ModuleNotFoundError:pip安装后没有名为“请求"的模块
问题描述:
我知道以前有人问过类似的问题,但我找不到解决问题的方法.
I know similar questions have been asked before but I couldn't find the solution to my problem.
我在尝试导入请求后收到以下错误消息:
I am getting the following error message after trying to import requests:
C:\Users\Jm\PycharmProjects\Test\venv\Scripts\python.exe C:/Users/Jm/PycharmProjects/Test/Test_001
Traceback (most recent call last):
File "C:/Users/Jm/PycharmProjects/Test/Test_001", line 1, in <module>
import requests
ModuleNotFoundError: No module named 'requests'
我只安装了一个版本的 python,python -m pip
安装请求说所有要求都已经满足.
I only have one version of python installed and python -m pip
install requests is saying all the requirements are already satisfied.
提前致谢.
答
运行此代码:
C:\Users\Jm\PycharmProjects\Test\venv\Scripts\python.exe -m pip install requests
这会强制安装目录到您的 python 安装.
This forces the installation directory to your python install.
这与简单的 python -m pip install requests