Unable to install using pip
dipannita-g opened this issue · 7 comments
Hi there!
I tried to install methplotlib using pip (pip install methplotlib) but it says:
Could not find a version that satisfies the requirement methplotlib (from versions: )
No matching distribution found for methplotlib
I am not sure how to install it otherwise. Any suggestion will be appreciated. Thank you!
Which python version do you have installed?
It is Python 3.7.5
Can you please try python -m pip install methplotlib
and see if that helps?
python -m pip install methplotlib
is giving the same error:
$ python -m pip install methplotlib
Collecting methplotlib
Could not find a version that satisfies the requirement methplotlib (from versions: )
No matching distribution found for methplotlib
Could you check if anything here explains your issue? https://stackoverflow.com/questions/49748063/pip-install-fails-for-every-package-could-not-find-a-version-that-satisfies
Would using conda with conda install -c bioconda methplotlib
work for you?
I was able to install it using pip. My default python was set to Python 2 instead of 3. Changing that and installing python3.7-dev solved the issue.
Thanks a bunch for your time and recommendations!