美文网首页
Mac 环境 anaconda 安装 Python jieba

Mac 环境 anaconda 安装 Python jieba

作者: 九九丸子 | 来源:发表于2021-12-18 19:41 被阅读0次

解决办法

必须是 conda 安装!!!!!
这样👇🏻

conda install jieba

如果报错找 conda command not found,可以参考我的另外一篇博客

试用过 pip install jieba 或者 python -m pip install 都可以安装成功,但是在 jupyter 仍然报错 No module named 'jieba'。

一定要用 conda 安装,找了各种博客文章,搞了小半天终于可以了(^-^)V

更新

conda 安装还是失败,用下面的办法最终解决了
使用conda install jieba失败,pip install jieba由于环境配置不对还是import jieba失败。
故使用

anaconda search -t conda jieba 

查看jieba版本

使用conda show + 对应的版本源, 如conda show conda-forge/jieba查找具体的安装命令:

conda install --channel https://conda.anaconda.org/conda-forge jieba 

相关文章

网友评论

      本文标题:Mac 环境 anaconda 安装 Python jieba

      本文链接:https://www.haomeiwen.com/subject/tuwgfrtx.html