Could not open requirements file: [Errno 2] No such file or directory: 'requirements.txt'
时间: 2023-07-22 17:38:00 浏览: 118
php中使用Curl、socket、file_get_contents三种方法POST提交数据
这个错误提示说明在当前目录下找不到名为 requirements.txt 的文件。请确保你在正确的目录下,并且文件名拼写无误。如果确实没有这个文件,可以手动创建一个 requirements.txt 文件,并在其中列出需要安装的依赖及其版本号。例如:
```
numpy==1.18.1
pandas==1.0.1
matplotlib==3.1.3
```
然后再次尝试运行命令:
```
pip install -r requirements.txt
```
这样就可以安装所有列出的依赖了。
阅读全文