本文主要是介绍使用pip install -r requirement.txt导入环境时需注意的问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
我们使用conda创建的虚拟环境时一般会先指定pyton版本。比如我一般喜欢指定python=3.8 。然后就通过工程中的requirement.txt文件导入剩下的环境,遇到了两个问题。
1、安装torch找不到对应的版本
Could not find a version that satisfies the requirement torch1.4.0 (from -r requirements.txt (line 1)) (from versions: )
No matching distribution found for torch1.4.0 (from -r requirements.txt (line 1))
2、然后尝试自己手动一个个安装
就又发现一个新的问题,会卡在
Building wheels for collected packages: pandas
Building wheel for pandas (setup.py) …
这个界面一直不动。
3、解决办法
搜索时偶然看到一个帖子说卡在图片2处可能是因为python版本不对
原文链接
于是尝试更换python版本为3.6,导入环境,仍报错图片1 的问题,尝试python=3.7,成功安装!
看到successfully我就放心啦。
这篇关于使用pip install -r requirement.txt导入环境时需注意的问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!