Python Forum
Thread Rating:
  • 1 Vote(s) - 1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python error
#1
Hi,

Need to install matplotlib on python 3.6.2 but when trying to install it getting this error (installing matplotlib package for designing the graphs.)The error is :-

“Could not find a version that satisfies the requirement install (from versions: )

No matching distribution found for install”
Reply
#2
Reply
#3
-operating system is windows 10 -64 bit.
-tried to install the package from same link shared as :-https://www.lfd.uci.edu/~gohlke/pythonlibs/

but same error appears tried to install from command line plus from blue screen command python packagename.setup and it ended up throwing mentioned error.

it seems for python version 3.6.2 package matplotlib version 3.0.2 can not be installed because each time same error keeps populating as mentioned in previous post.

and any idea apart from this package maplotlib 3.0.2 can we use similar other package for pie charts or graphs etc. as matplotlib version 3.0.2 is not getting installed because of mentioned error.
Reply
#4
(Dec-19-2018, 08:37 AM)janho Wrote: -operating system is windows 10 -64 bit.
-tried to install the package from same link shared as :-https://www.lfd.uci.edu/~gohlke/pythonlibs/

but same error appears tried to install from command line plus from blue screen command python packagename.setup and it ended up throwing mentioned error.

it seems for python version 3.6.2 package matplotlib version 3.0.2 can not be installed because each time same error keeps populating as mentioned in previous post.

and any idea apart from this package maplotlib 3.0.2 can we use similar other package for pie charts or graphs etc. as matplotlib version 3.0.2 is not getting installed because of mentioned error.

Any updates regarding resolution of this error please?
Reply
#5
any updates please?
Reply
#6
using wheel from gohlke - you need to download it and install it locally, e.g. assuming whl file is in the current working directory

pip install matplotlib‑3.0.2‑cp36‑cp36m‑win32.whl - for python 3.6, 32 bit
pip install matplotlib‑3.0.2‑cp36‑cp36m‑win_amd64.whl - - for python 3.6, 64 bit
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply
#7
(Dec-19-2018, 01:16 PM)buran Wrote: using wheel from gohlke - you need to download it and install it locally, e.g. assuming whl file is in the current working directory

pip install matplotlib‑3.0.2‑cp36‑cp36m‑win32.whl - for python 3.6, 32 bit
pip install matplotlib‑3.0.2‑cp36‑cp36m‑win_amd64.whl - - for python 3.6, 64 bit


When tried to download and double clicked to install it got error "windows can not open this type of file (.whl)
Reply
#8
don't double click. use cmd and write respective pip command from my post
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply
#9
can you please post it again that complete command (pip command for windows 10 64 bit, python version 3.6.2 and package name matplotlib version 3.0.2) to install it from cmd?

Thanks

sorry got it.pip install matplotlib‑3.0.2‑cp36‑cp36m‑win_amd64.whl - - for python 3.6, 64 bit

thanks

no installing from cmd also not working and getting same error "could not find a version that satisfies the requirement cycler>=0.10 (from matplotlib==3.0.2)(from versions: )No matching distribution found for cycler>=0.10
(from matplotlib==3.0.2)
Reply
#10
download and install wheel from gohlke
cycler‑0.10.0‑py2.py3‑none‑any.whl

Last update is in 2016, so it claims compatibility up to 3.5, but I don't think there will be problem with 3.6
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020