我試圖開始使用Evernote的SDK,我使用Ubuntu 13.04無法導入evernote.api.client(evernte SDK)
我通過安裝在SDK:
pip install evernote
但當我想用測試它:
python -c 'from evernote.api.client import EvernoteClient'
我得到這個:
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named api.client
問題是什麼?
編輯:pip install evernote
正常工作我想,它給了我這樣的:
Requirement already satisfied (use --upgrade to upgrade): evernote in /usr/local/lib/python2.7/dist-packages/evernote-1.24.0-py2.7.egg
Requirement already satisfied (use --upgrade to upgrade): oauth2 in /usr/lib/python2.7/dist-packages (from evernote)
Requirement already satisfied (use --upgrade to upgrade): httplib2 in /usr/lib/python2.7/dist-packages (from oauth2->evernote)
Cleaning up...
這裏是turorial:http://dev.evernote.com/start/guides/python.php
不,我覺得它工作得很好
pip install evernote
它給了我這樣的: 需求已經滿足了(使用--upgrade升級):Evernote的在/usr/local/lib/python2.7/dist-packages/evernote- 1.24.0-py2.7.egg 需求已經滿足(使用--upgrade升級):在的oauth2 /usr/lib/python2.7/dist-packages(來自Evernote的) 要求已經滿足(使用--upgrade來升級):/usr/lib/python2.7/dist-packages中的httplib2(來自oauth2-> evernote) 正在清理... – Dxtr您可以嘗試刪除它並使用1.23。2版 –
還是同樣的問題 回溯(最近通話最後一個): 文件「」,1號線,在 導入錯誤:沒有模塊名爲api.client –
Dxtr