Mac (10.8) に requests パッケージを他のものと同じようにインストールしましたpip
。
の下に見えます/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/site-packages
。
ただしimport requests
、Python スクリプトを実行すると、端末エラーが発生
しますImportError: No module named requests
。インストールされていないかのようです。
簡単なインストールもインストールされていると言います:
$ easy_install requests
Searching for requests
Best match: requests 1.2.3
Adding requests 1.2.3 to easy-install.pth file
Using /Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/site-packages
Processing dependencies for requests
Finished processing dependencies for requests
私が見つけることができた唯一のエラーは、pipでアップグレードしたときでした:
$ pip install requests --upgrade
Downloading/unpacking requests
Real name of requirement requests is requests
Downloading requests-1.2.3.tar.gz (348Kb): 348Kb downloaded
Running setup.py egg_info for package requests
Installing collected packages: requests
Found existing installation: requests 1.2.3
Uninstalling requests:
Successfully uninstalled requests
Running setup.py install for requests
File "/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/site-packages/requests/packages/urllib3/contrib/ntlmpool.py", line 38
"""
^
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 130-132: truncated \uXXXX escape
Successfully installed requests
Cleaning up...
インポートできない理由をいくつか教えてください。ありがとう