I am trying to import requests
But when I try to run it in PyCharm (or even terminal) I get:
As a note, my PyCharm interpreter is listed as:
Things I've tried.
- I started by trying
sudo pip install requests
andsudo pip3 install requests
both of which give:
uninstalling and reinstalling requests via
pip uninstall requests
thenpip install requests
as well aspip3 uninstall requests
thenpip3 install requests
The terminal command
pip3 list
gives the most recent version of requestsThe terminal commands
which python
andwhich python3
both return/Users/chad/opt/anaconda3/bin/python3
I'm on MacOS 11.6 and totally lost.