ERROR: git+https://github.com/hojonathanho/diffusion.git does not appear to be a Python project: neither 'setup.py' nor 'pyproject.toml' found.
时间: 2024-04-01 14:31:24 浏览: 162
这个错误提示是因为使用了git+https格式的链接安装包,但是该链接并不是一个Python项目,因此找不到安装文件。建议检查一下链接是否正确或者尝试使用其他安装方式,比如使用pip install安装已经发布到PyPI上的包。如果你需要安装这个项目,可以先将它clone到本地,然后使用pip install安装本地路径下的包。例如:
```
git clone https://github.com/hojonathanho/diffusion.git
cd diffusion
pip install -e .
```
阅读全文