Tag: evernote

无法从site-packages目录加载通过pip安装的Python模块

我正在尝试安装和使用Evernote模块( https://github.com/evernote/evernote-sdk-python )。 我跑pip install evernote ,它说,安装工作。 我可以确认evernote模块存在于/usr/local/lib/python2.7/site-packages 。 但是,当我尝试运行python -c "import evernote"我得到以下错误: Traceback (most recent call last): File "<string>", line 1, in <module> ImportError: No module named evernote 这是我的.bash-profile的内容: [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* # Setting PATH for Python 3.3 # The […]