ModuleNotFoundError: No module named #39;requests#39; after pip install(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:UsersJmPycharmProjectsTestvenvScriptspython.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
install requests 说所有的要求都已经满足了.
I only have one version of python installed and python -m pip
install requests is saying all the requirements are already satisfied.
推荐答案
运行这段代码:
C:UsersJmPycharmProjectsTestvenvScriptspython.exe -m pip install requests
这会强制安装目录到您的 python 安装.
This forces the installation directory to your python install.
这与简单的 python -m pip install requests
这篇关于ModuleNotFoundError:pip 安装后没有名为“请求"的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:ModuleNotFoundError:pip 安装后没有名为“请求"的


基础教程推荐
- 求两个直方图的卷积 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 包装空间模型 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01