当我把我的Django项目放在Heroku上时,我遇到了一个错误:错误:由于操作系统错误,无法安装软件包:[错误号2]

8nuwlpux  于 2022-11-13  发布在  Go
关注(0)|答案(1)|浏览(116)

我不想这个包在我的项目,我怎么能跳过他?或者我能做什么?

remote: -----> Installing requirements with pip
remote:        Processing /D:/Python/mymodules/dist/vsearch-1.0.tar.gz
remote:        ERROR: Could not install packages due to an OSError: [Errno 2] No such file or directory: '/D:/Python/mymodules/dist/vsearch-1.0.tar.gz'
xdyibdwo

xdyibdwo1#

感谢@Divyessh,他回答了我的问题。
所以,如果你有像我这样的问题,你可以从你的requirements.txt中删除你不需要的包。
之后,您可以将需求更改为UTF-8,如果您遇到类似??0/0?或类似的问题,它将对您有所帮助。

pip freeze | Out-File -Encoding UTF8 requirements.txt

相关问题