说明:有时候我们运行python
,会出现无法运行直接报错"ImportError: No module named setuptools"
。根据提示应该是缺少setuptools
模块导致的,那就需要在当前服务器环境中重新编译安装setuptools
工具。这里说下方法。
1、下载setuptools模块
wget --no-check-certificate https://www.wxiou.cn/usr/down/setuptools-0.6c11.tar.gz
tar -zxvf setuptools-0.6c11.tar.gz
cd setuptools-0.6c11
2、编译setuptools
python setup.py build
3、安装setuptools
python setup.py install
安装完毕setuptools
模块后,我们再去执行python
应该是不会出现该错误提示了。
's
最后修改:2017 年 06 月 26 日 07 : 29 AM
文章: 《出现"ImportError: No module named setuptools"错误的解决方法》
联系方式:
文章链接:https://wxiou.cn/index.php/archives/677/
除特别注明外,文章均为Literature原创,转载时请注明本文出处及文章链接
联系方式:
文章链接:https://wxiou.cn/index.php/archives/677/
除特别注明外,文章均为Literature原创,转载时请注明本文出处及文章链接
Comment here is closed