安装gensim的种种问题

安装gensim的种种问题,第1张

一、安装时,如果出现由于网络的问题,可以使用

pip install gensim==4.0.0 -i https://pypi.tuna.tsinghua.edu.cn/simple --user

参考的文章找不到了,呜呜呜。 

==后加版本

二、在引用时出现错误:RuntimeError: Compiled extensions are unavailable. If you've installed from a package, ask the package maintainer to include compiled extensions. If you're building Gensim from source yourself, install Cython and a C compiler, and then run `python setup.py build_ext --inplace` to retry.

这是由于numpy、scipy等版本与gensim不对应,但是我经过很多尝试,都失败了。降低gensim版本有效,但是如果版本过低,则会出现错误:ImportError: cannot import name 'WordEmbeddingSimilarityIndex' from 'gensim.models.keyedvectors'。往上调版本即可。

三、pip升级后出现warning:pip is being invoked by an old script wrapper. This will fail in a future version of pip.

将pip的版本降回去即可,直接使用

python(或者python.exe)-m pip install pip==版本

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/920915.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-16
下一篇 2022-05-16

发表评论

登录后才能评论

评论列表(0条)

保存