anaconda+python3.6安装rasa报错

 

anaconda+python3.6安装rasa报错

 setuptools版本问题

更新一下版本再下载就好了

pip install --ignore-installed setuptools

 

anaconda+python3.6安装rasa报错

还有这样的问题,大概就是rasa需要这个包的版本和你现在所拥有的版本不兼容,

解决方法,按照它版本要求,换个版本就好了 

比如卸载原来的tensoflow版本,下载2.1.0版本

pip install -U tensorflow==2.1.0 -i https://pypi.tuna.tsinghua.edu.cn/simple

ujson也一样,先  pip unstall ujson

然后重新下载要求的版本

pip install -U ujson==1.35 -i https://pypi.tuna.tsinghua.edu.cn/simple

然后就好啦

anaconda+python3.6安装rasa报错