I am working in a conda environment, trying to install a package into it. On my previous computer, pip install within that environment worked. But on this new Mac, if I do that, and then try to import the package in that environment, it doesn't work.
This:
pip install SpeechRecognition
differs from
python3 -m pip install SpeechRecognition
The latter works below, but the former doesn't:
>>>import speech_recognition
>>>
Also, the files appear to be pointing to the same place:
(test) ~$ which python
/anaconda3/envs/test/bin/python
(test) ~$ which python3
/anaconda3/envs/test/bin/python3
(test) ~$ which pip
/anaconda3/envs/test/bin/pip
everything is running from the test environment.
So what's going on? and how do I fix it? I want to be ab