how i know the version of python model which i was upload it | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

how i know the version of python model which i was upload it

ex: i have any pyrhon module like tkinter i wont to know the version of it

13th Dec 2018, 5:28 AM
Omar Muhammad Nofal
Omar Muhammad Nofal - avatar
3 Answers
+ 2
From your windows cmd prompt pip show <package_name> -------- You can also use the below, but beware not all have packages have __version__ import sklearn print(sklearn.__version__)
13th Dec 2018, 6:35 AM
Chris Ford
Chris Ford - avatar
0
pip show <tkinter> it dosnt work
13th Dec 2018, 12:52 PM
Omar Muhammad Nofal
Omar Muhammad Nofal - avatar
0
Take off the <> and put pip show Tkinter
13th Dec 2018, 1:02 PM
Chris Ford
Chris Ford - avatar