在Linux系统使用pip install -r requirements.txt 以及出现的问题

ModuleNotFoundError: No module named 'sklearn'

在Linux系统使用pip install -r requirements.txt 以及出现的问题

1.python项目中必须包含一个 requirements.txt 文件,用于记录所有依赖包及其精确的版本号。以便新环境部署。

requirements.txt可以通过pip命令自动生成和安装。

2.生成requirements.txt文件:

pip freeze > requirements.txt

3.安装requirements.txt依赖:

pip install -r requirements.txt
4 ModuleNotFoundError: No module named 'numpy'

pip3 install numpy


 

你可能感兴趣的:(pytorch)