报错汇总
不是openmim就莫名奇妙安装上了?
首先,mmcv安装文档
其次, pip install -U openmim
,安装报错,
尝试换源: pip install -U openmim -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
,出现
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts
无奈之后,根据
尝试python -c 'import torch;print(torch.__version__)'
后,再安装openmim就
玄学!!
已安装CUDA与Pytorch但torch.cuda.is_available()为False
- [【一文解决】已安装CUDA与Pytorch但torch.cuda.is_available()为False ](http://t.csdnimg.cn/PTc3y)*
- 1
- 2
- 3
- 4
尝试过如下操作:
- 替换cuda版本:从12.2 ->12.1,再从12.1->12.2
- conda+pip方式安装pytorch.
- 更换环境,卸载miniconda,安装anaconda
- 更换新conda环境等。
——————无效——————
安装Cuda并可行无非: - 安装Cuda toolkit和cuDNN
- 验证nvcc -V 和nvidia-smi
但一直是False.
解决:缺乏测试Cuda执行。
在CMD中执行,cuda测试文件,从而人工启动。直接点会闪屏并不会保持结果。
最后:
——————————————————
一直False真难受。一般方法还没法解决
——————————————————
pip:Could not install packages due to an OSError: HTTPSConnectionPool
起因:
升级setuptools包
ERROR: Could not install packages due to an OSError: HTTPSConnectionPool(host='files.pythonhosted
.org', port=443): Max retries exceeded with url: /packages/b0/3a/88b210db68e56854d0bcf4b38e165e03
be377e13907746f825790f3df5bf/setuptools-59.6.0-py3-none-any.whl (Caused by ConnectTimeoutError(<p
ip._vendor.urllib3.connection.HTTPSConnection object at 0x0000014E865360B8>, 'Connection to files.pythonhosted.org timed out. (connect timeout=15)'))
原因:
pip 下载速度太慢了
解决方法:从另一个源中下载
pip install xxx -i https://pypi.douban.com/simple/
ValueError: check_hostname requires server_hostname
起因:
pip安装时,有VPN
解决方法:关闭VPN
Conda环境下包版本不适应问题
起因
:python版本过低
解决方法:
- conda install scikit-learn=0.23.1 #安装指定版本
- conda uninstall scikit-learn #卸载包
- conda update scikit-learn #升级包
Apex安装
window中使用wget命令
Windows环境下使用wget的详细操作步骤(zip压缩包+环境配置)【超详细】