簡體   English   中英

安裝后仍無法導入gspread模塊

[英]unable to import gspread module despite being installed

盡管我已經通過pip安裝了gspread,但是無法在結構腳本上運行gspread。 我錯過了什么?

Gangzhengs-MacBook-Pro:Fabric mosesliao$ pip install gspread
Collecting gspread
Requirement already satisfied (use --upgrade to upgrade): requests>=2.2.1 in /usr/local/lib/python2.7/site-packages (from gspread)
Installing collected packages: gspread
Successfully installed gspread-0.3.0
Gangzhengs-MacBook-Pro:Fabric mosesliao$ fab google_docs
Traceback (most recent call last):
  File "/Library/Python/2.7/site-packages/fabric/main.py", line 658, in main
    docstring, callables, default = load_fabfile(fabfile)
  File "/Library/Python/2.7/site-packages/fabric/main.py", line 165, in load_fabfile
    imported = importer(os.path.splitext(fabfile)[0])
  File "/Users/mosesliao/svn/chubi-trunk-project/Fabric/fabfile.py", line 29, in <module>
    import gspread
ImportError: No module named gspread
Gangzhengs-MacBook-Pro:Fabric mosesliao$ pip install gspread
Requirement already satisfied (use --upgrade to upgrade): gspread in /usr/local/lib/python2.7/site-packages
Requirement already satisfied (use --upgrade to upgrade): requests>=2.2.1 in /usr/local/lib/python2.7/site-packages (from gspread)
Gangzhengs-MacBook-Pro:Fabric mosesliao$ python -V
Python 2.7.11
File "/Library/Python/2.7/site-packages/fabric/main.py", line 165, in load_fabfile

Requirement already satisfied (use --upgrade to upgrade): gspread in /usr/local/lib/python2.7/site-packages

似乎表明您的計算機上有兩個python2.7安裝。 一個是“類Mac”,另一個是“類Linux”。 也許您使用的是Mac默認安裝的python ,而另一個則使用的是pip 至少值得一試...

which pip
which python

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM