所以,我是python的新手,但是直到這一本書纔得到真正的問題.. 在這一點上我們要安裝lpthw.web
,但是當試圖安裝它時得到一個錯誤。學習python hard way excercise 50
這是we're告訴寫入到終端:
$ sudo pip install lpthw.web
這也是我不斷收到錯誤:
Exception: Traceback (most recent call last): File "/Library/Python/2.6/site-packages/pip-1.2.1-py2.6.egg/pip/basecommand.py", line 107, in main status = self.run(options, args) File "/Library/Python/2.6/site-packages/pip-1.2.1-py2.6.egg/pip/commands/install.py", line 248, in run import setuptools ImportError: No module named setuptools
Storing complete log in /Users/user/Library/Logs/pip.log Users-MacBook-Pro:~ user$
是的,我去了我的點子看到我和setuptools沒有任何關係。這是怎麼發生的?
我很困惑,有什麼建議嗎?
你可以嘗試安裝['setuptools'(http://pypi.python.org/pypi/setuptools)。安裝是相當無痛的。它就像爲你的Python版本下載'.egg'一樣簡單,然後在shell中運行:' sh setuptools-0.6c11-py2.6.egg' –
mgilson
Yout問題與http://stackoverflow.com/questions有關/ 9305316/python-import-web-not-working – user1929959