ERROR: Could not open requirements file: [Errno 2] No such file or directory: 'pytorch'
时间: 2023-11-06 14:48:26 浏览: 312
如何解决python.exe: can’t open file ‘manage.py’: [Errno 2] No such file or directory这个问题
你遇到的错误是由于找不到名为 'pytorch' 的要求文件所致。请确保你已经正确安装了 PyTorch,并且在当前工作目录中存在该要求文件。如果你尚未安装 PyTorch,可以使用以下命令来安装:
```
pip install torch
```
然后再次尝试运行你的代码或命令。如果问题仍然存在,请检查文件路径是否正确,并确保该文件存在于指定的位置。
阅读全文