I can't seem to get the requests package to install correctly. Regardless of what I use to actually run my program, I get the same error:
Traceback (most recent call last): File "/Users/garce/Desktop/songlyrics/getlyrics.py", line 2, in <module> import requests ModuleNotFoundError: No module named 'requests'
However, I've used pip to install requests. When I run pip show requests in a terminal window, it comes up with this:
Name: requests Version: 2.24.0 Summary: Python HTTP for Humans. Home-page: https://requests.readthedocs.io Author: Kenneth Reitz Author-email: [email protected] License: Apache 2.0 Location: /Users/garce/opt/anaconda3/lib/python3.8/site-packages Requires: urllib3, idna, certifi, chardet Required-by: Sphinx, jupyterlab-server, conda, conda-build, anaconda-project, anaconda-client
I assume this is a path issue of some sort, but I can't figure out what's going wrong here. Any idea?