Oct-29-2023, 09:11 PM
Installed the requests module, but it is not there. Why?
ModuleNotFoundError: No module named 'requests'
|
Oct-29-2023, 09:11 PM
Installed the requests module, but it is not there. Why?
Oct-29-2023, 09:13 PM
do you have more than one version of python installed?
try python -V and pip -V then pip list
Oct-29-2023, 09:19 PM
The error say pip3.11 is not installed. Maybe -m py pip install requests or python3 -m pip install requests
I welcome all feedback.
The only dumb question, is one that doesn't get asked. My Github How to post code using bbtags Download my project scripts
Oct-29-2023, 09:22 PM
Only 3.11
(Oct-29-2023, 09:13 PM)Larz60+ Wrote: do you have more than one version of python installed? Larz60+ write Oct-30-2023, 02:41 PM:
Rather than videos, please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Oct-29-2023, 09:30 PM
(Oct-29-2023, 09:19 PM)menator01 Wrote: The error say pip3.11 is not installed. Maybe -m py pip install requests or python3 -m pip install requests
Oct-29-2023, 09:30 PM
Please post text, not images. Use the Insert output button.
Oct-29-2023, 09:36 PM
PS C:\Users\berna> python3 -m pip install requests
Requirement already satisfied: requests in c:\users\berna\appdata\local\packages\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\localcache\local-packages\python311\site-packages (2.31.0) Requirement already satisfied: charset-normalizer<4,>=2 in c:\users\berna\appdata\local\packages\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\localcache\local-packages\python311\site-packages (from requests) (3.3.1) Requirement already satisfied: idna<4,>=2.5 in c:\users\berna\appdata\local\packages\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\localcache\local-packages\python311\site-packages (from requests) (3.4) Requirement already satisfied: urllib3<3,>=1.21.1 in c:\users\berna\appdata\local\packages\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\localcache\local-packages\python311\site-packages (from requests) (2.0.7) Requirement already satisfied: certifi>=2017.4.17 in c:\users\berna\appdata\local\packages\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\localcache\local-packages\python311\site-packages (from requests) (2023.7.22) PS C:\Users\berna>
Oct-29-2023, 10:06 PM
As Larz60+ suggested, what does
python3 -m pip list or python3.11 -m pip list show?
I welcome all feedback.
The only dumb question, is one that doesn't get asked. My Github How to post code using bbtags Download my project scripts
Oct-29-2023, 10:12 PM
|
|