Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the problem of No module named & # 039 in Python

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces how to solve the No module named 'requests' problem in Python. It is very detailed and has a certain reference value. Interested friends must read it!

1. Execute Code Times error

Error message: ModuleNotFoundError: No module named 'requests'

Error screenshot:

The command to view the python version is as follows:

Python-V

The screenshot of the command to view the python version is as follows:

two。 Solution 1

Install the requests module with the following command:

Pip install requests

If the following error occurs after running the above command, most of them will be covered by walls. The screenshot is as follows:

3. Solution 2

Download the requests module manually at the following address:

Https://github.com/kennethreitz/requests/zipball/master

Extract the downloaded file to the appropriate directory, such as E:\ Python\ requests. The screenshot is as follows:

From the command line, go to the requests directory and execute the setup.py file to install, with the following command:

E:\ Python > cd requests

E:\ Python\ requests > python setup.py install

The screenshot of the command is as follows:

After the installation is complete, check to see if the installation has been successful

E:\ Python > pip list

The above is all the contents of the article "how to solve the No module named 'requests' problem in Python". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report