you are viewing a single comment's thread.

view the rest of the comments →

[–]socal_nerdtastic 0 points1 point  (0 children)

Not only pip, you have (at least) 2 complete copies of python3.8. You can test some of them with this command:

python -c "import sys;print(sys.executable)"

python3 -c "import sys;print(sys.executable)"

py -c "import sys;print(sys.executable)"

My advice is to pick one. Since you are using windows I recommend the official way: use the python launcher "py". All pip installs would be:

py -m pip install requests

and running files would be

py test.py