在OSX上使用python3
我使用pip3 install requests
安装了请求
当我运行>>>python -c "import requests"
时没有错误,但是当我运行以import requests
开头的文件时,我收到以下错误:
Traceback (most recent call last):
File "main.py", line 1, in <module>
import requests
ImportError: No module named 'requests'
难住了。
答案 0 :(得分:0)
事实证明我使用python 2运行该文件,但已在python 3(pip3)下安装了请求。