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
3 odpowiedzi
+ 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__)
0
pip show <tkinter>
it dosnt work
0
Take off the <> and put pip show Tkinter