ugh, macs can be such a pain with python stuff. i had the same issue with *import requests python on mac*. what worked for me was using homebrew to manage python.
install homebrew if you don’t have it:
`/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebr...install.sh)"`
then, install python via homebrew:
`brew install python`
after that, pip should work fine. try `pip install requests` again. hope this helps!
install homebrew if you don’t have it:
`/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebr...install.sh)"`
then, install python via homebrew:
`brew install python`
after that, pip should work fine. try `pip install requests` again. hope this helps!
