使用pip install -r requirement.txt导入环境时需注意的问题

我们使用conda创建的虚拟环境时一般会先指定pyton版本。比如我一般喜欢指定python=3.8 。然后就通过工程中的requirement.txt文件导入剩下的环境,遇到了两个问题。

1、安装torch找不到对应的版本

Could not find a version that satisfies the requirement torch==1.4.0 (from -r requirements.txt (line 1)) (from versions: )No matching distribution found for torch==1.4.0 (from -r requirements.txt (line 1))
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 torch
1.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我就放心啦。

你可能感兴趣的:(朝花夕拾,pytorch,python,机器学习)