10.7- 的报错整理(与linux、python相关)

  1. 报错一:
    1. conda: command not found
    2. 原因:因为~/.bashrc文件没有配置好
  2. 报错二:
    1. 报错:not writable
    2. 原因:不支持写入权限
    3. 解决: open (data_path,'w') 
  3. 报错三:
    1. 报错:你需要来自  的权限才能对此文件夹进行更改。
    2. 解决:或许重启可以解决。
  4. 报错四:
    1. 报错:TypeError: Descriptors cannot not be created directly. If this call came from a _pb2.py file……
    2. 解决:
      1. pip uninstall protobuf(注意尽量一句一句执行,不要一起全部复制粘贴执行,容易出错)
      2. pip install protobuf==3.20.1
  5. 报错五:
    1. 报错:The PyDev.Debugger requires Python 3.6 onwards to be run.
    2. 解决:扩展搜索python 然后卸载处的下拉框选择安装另一个版本,选择一个比较早期的版本
  6. 报错六:
    1. 报错:Building wheel for llvmlite (setup.py) ... error   ERROR: Command errored out with exit status 1:
    2. 原因:安装librosa 需要安装对应的llvmlite python3.6对应给的是llvmlite==0.31.0
  7. 报错七:
    1. 发生异常: SystemExit 2   File "/home/wangshiyao/wangshiyao_space/exp4/samplernn-pytorch-master/train.py", line 360, in     main(**vars(parser.parse_args()))
    2. 原因:将需要命令行输入的参数,由于要调试,将默认值设置在了code中,default
    3. 解决:parser中设置了required=Ture的,设置default之后,要把required去掉
  8. 报错八:
    1. 报错:torch.FloatTensor constructor received an invalid combination of arguments - got (int, int, numpy.int64), but expected one of:
       * no arguments
       * (int ...)
            didn't match because some of the arguments have invalid types: ([31;1mint[0m, [31;1mint[0m, [31;1mnumpy.int64[0m)
       * (torch.FloatTensor viewed_tensor)
       * (torch.Size size)
       * (torch.FloatStorage data)
       * (Sequence data)
    2. 解决:将所有设置的参数外加上int()
  9. 报错九:
    1. 报错:ValueError: too many values to unpack (expected 2)
    2. 原因:返回值个数不对应
    3. 解决:查看函数返回值个数
  10. 报错十:
    1. 报错:gpg: no valid OpenPGP data found.
    2. 原因:wai网网站访问不了
  11. 报错十一:
    1. 报错:copying between containers is not supported
    2. 原因:两个容器之间是无法直接传输,所以目前可行的方法是先将一个容器中的文件复制到宿主机,然后再从宿主机中复制到另一个容器
  12. 报错十二:
    1. 报错:python:error: import: command not found
    2. 解决:在第一行加上(一定是第一行):#!/usr/bin/python

你可能感兴趣的:(linux,linux,运维,服务器)