自学内容网 自学内容网

为fooocus v2.5.0安装groundingdino

在win10下折就fooocus,使用git pull命令更新本地,然后…\python_embeded\python.exe -m pip install -r .\requirements_versions.txt更新依赖关系包。
卡在groundingdino的安装上,先在requirements_versions.txt中删除它,安装其他依赖包,然后再手动修改、安装它:
在这里插入图片描述
在setup.py第41行出错,UnicodeDecodeError: ‘gbk’ codec can’t decode byte 0xar in position … …

下载源代码
解压缩,修改setup.py第41行:

with open('README.md',encoding='utf-8') as readme_file:
    readme = readme_file.read()

然后在命令行,用cd命令改变路径到groundingdino-py-0.4.0目录下,需要使用python执行:

D:\Fooocus\python_embeded\python.exe f:\groundingdino-py-0.4.0\setup.py egg_info
D:\Fooocus\python_embeded\python.exe f:\groundingdino-py-0.4.0\setup.py install

原文地址:https://blog.csdn.net/fengyu09/article/details/140506895

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!