I am trying to install a NLP suite on my macbook pro, which is updated to the most recent software version Catalina 10.15.6. So far, I have installed Anaconda 3.8, created a version 3.7 NLP environment by conda create -n NLP python=3.7, and activated the NLP environment by conda activate NLP.
My next step is to install all python packages that are written in the file "requirements.txt" with the following command pip install -r requirements.txt. However, it showcases this message:
"ERROR: Could not find a version that satisfies the requirement pprint (from -r requirements.txt (line 67)) (from versions: none)
ERROR: No matching distribution found for pprint (from -r requirements.txt (line 67))"
I also tried installing the package alone, however, the same error message appears.
Any advice would be appreciated! Please let me know if any additional information I can provide.