Python Forum
how to install numpy and matplotlib to Tkinter - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: how to install numpy and matplotlib to Tkinter (/thread-6661.html)



how to install numpy and matplotlib to Tkinter - elwolv - Dec-02-2017

Installed Tkinter-Python IDE and worked well on examples

I have Python 3.6 installed with working numpy matplotlib installation
I used: python -m install --users ........
tkinter does not recognize these instalations?

how to install again numpy and matplotlib in order to be recognized by
tkinter ?
PIP did not work any both cases?


RE: how to install numpy and matplotlib to Tkinter - Windspar - Dec-02-2017

1. What system you on ?

2. Make sure you use admin/sudo pip install. Else pip doesn't have permission.


RE: how to install numpy and matplotlib to Tkinter - sparkz_alot - Dec-02-2017

(Dec-02-2017, 01:26 PM)elwolv Wrote: I have Python 3.6 installed with working numpy matplotlib installation

If they are working, you only need to import them into your project.


RE: how to install numpy and matplotlib to Tkinter - Larz60+ - Dec-02-2017

sounds like a path problem. Start python from terminal window and see which version is running.
If it's showing 3.6, exit python and type: 'pip list' and make sure you see numpy and matplotlib in the installed module list.


RE: how to install numpy and matplotlib to Tkinter - Barrowman - Dec-02-2017

On my Mint 18.2 there 2 versions of pip:
pip is for python 2.x and pip3 for python 3.x
So if you are running python 3.x you need to use the pip3 installer otherwise you get the python 2.x versions which are only seen by python 2.x and usable by it.