我是新手,我需要爲我的項目使用pySerial和feedparser模塊。我正在跑獅子山。未找到Python pip安裝模塊。如何將python鏈接到pip位置?
我按照以下教程,以便我可以升級到python 2.7.3,然後使用上述模塊。
http://hackercodex.com/guide/python-virtualenv-on-mac-osx-mountain-lion-10.8/
我跟着這個教程,直到我安裝點子。而不是安裝Virtualenv。我使用以下命令安裝pySerial和feedparser
$ pip install pySerial
Requirement already satisfied (use --upgrade to upgrade): pySerial in /Library/Python/2.7/site-packages
Cleaning up...
我認爲這已經存在並檢查它。 Python似乎正在導入這很好。我的python版本已經升級到2.7.3 btw,因爲我使用教程中提到的自制軟件安裝了它。
然後我試圖安裝feedparser
$ pip install feedparser
Requirement already satisfied (use --upgrade to upgrade): feedparser in /usr/local/lib/python2.7/site-packages
Cleaning up...
通知其在USR/local/lib目錄的site-packages目錄如何。
我所有的pip安裝都安裝在該目錄中,但是當我嘗試導入它們時,python似乎沒有選擇它們。
如何設置路徑,使python也看起來那裏以及核心目錄?
您的幫助將不勝感激。
我試圖尋找答案在這裏: Pip installs but module is not found Why I can't import beautifulsoup on mac using python 2.7 after installing it by using pip and/or easy_install?
但niether都是在同樣的情況,因爲我。我不明白爲什麼會這樣,因爲我通過自制軟件編輯我的.bash_profile具有以下
# Set architecture flags
export ARCHFLAGS="-arch x86_64"
# Ensure user-installed binaries take precedence
export PATH=/usr/local/share/python:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
# Load .bashrc if it exists
test -f ~/.bashrc && source ~/.bashrc
然後安裝自制軟件,然後安裝蟒蛇2.7.3(2.7.3現在目前我的機器上運行)
我覺得所有的pip安裝都會正確關聯?
這對我的作品。你能簡單解釋一下嗎? Thx – GilbertLee 2014-07-03 11:32:44