Hey! I had the same issue with *import requests python on mac*. Turns out, my PATH was messed up.
Try this:
1. Open your terminal.
2. Run `nano ~/.zshrc` (or `~/.bashrc` if you’re using bash).
3. Add this line: `export PATH="/usr/local/opt/python/libexec/bin:$PATH"`
4. Save and restart your terminal.
Then, try installing requests again with `pip install requests`. Worked for me!
Try this:
1. Open your terminal.
2. Run `nano ~/.zshrc` (or `~/.bashrc` if you’re using bash).
3. Add this line: `export PATH="/usr/local/opt/python/libexec/bin:$PATH"`
4. Save and restart your terminal.
Then, try installing requests again with `pip install requests`. Worked for me!
