caiyesd
caiyesd
建议从gocode迁移到gopls,gopls是官方维护的,更新快,兼容好 如何设置?
我也遇到了这个问题。 ``` INFO: pip is looking at multiple versions of transformers to determine which version is compatible with other requirements. This could take a while. INFO: pip is looking at...
我按如下方式修改 requirements.txt 后,就可以了。 ``` diff --git a/requirements.txt b/requirements.txt index 65fcfcf..4eb6bd1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ deepspeed==0.9.2 numpy==1.23.5 sentencepiece==0.1.97 -torch==2.0.0 +torch==2.0.1 transformers==4.29.1 xformers==0.0.20 ```
我也注意到这点了,一开始确实有点不能理解。
I met this issue as well.