ModuleNotFoundError:pip 安装后没有名为“请求"的

ModuleNotFoundError: No module named #39;requests#39; after pip install(ModuleNotFoundError:pip 安装后没有名为“请求的模块)

本文介绍了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 安装后没有名为“请求"的

基础教程推荐