我正在努力寻找可以帮助我自动填写表单的库。有人建议我从http://pypi.python.org/pypi/grab/0.4.8上抓取(一个网站抓取库)。我解压缩了tar.gz,然后尝试了以下方法:
python setup.py install
Traceback (most recent call last):
File "setup.py", line 1, in <module>
from setuptools import setup, find_packages
ImportError: No module named setuptools有人知道怎么安装吗?
发布于 2013-02-05 16:27:48
错误是明确和简单的。
ImportError:没有名为setuptools的模块
请检查您是否安装了python3或python2的setuptools。
archlinux上的示例(python => python3)、(python2 => python2)
当心那个
请尝试使用"python2 setup.py install“
https://stackoverflow.com/questions/14702606
复制相似问题