Answers for "how to setup ubuntu for python"

12

install python on ubuntu

sudo apt install python3.8
Posted by: Guest on October-13-2020
0

install python ubuntu

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

Python Answers by Framework

Browse Popular Code Answers by Language