Answers for "check version of various pkgs"

0

check version of various pkgs

python -m pip show scikit-learn  # to see which version and where scikit-learn is installed
python -m pip freeze  # to see all packages installed in the active virtualenv
python -c "import sklearn; sklearn.show_versions()"
Posted by: Guest on January-24-2022

Python Answers by Framework

Browse Popular Code Answers by Language