Запуск jupyter notebook в Ubuntu 20.04 LTS


Делаю:
05.07.2023


Запускаю в изолированном окружении


Установка нужных пакетов

$ {
    pip install --upgrade jupyter
    pip install --upgrade matplotlib
    pip install --upgrade numpy
    pip install --upgrade pandas
    pip install --upgrade scipy
    pip install --upgrade scikit-learn
    pip install --upgrade seaborn
}


$ jupyter notebook --ip 0.0.0.0 --port 8888


import matplotlib
import numpy
import pandas
import scipy
import sklearn

print('matplotlib',  matplotlib.__version__)
print('numpy', numpy.__version__)
print('pandas', pandas.__version__)
print('scipy', scipy.__version__)
print('sklearn', sklearn.__version__)


matplotlib 3.7.1
numpy 1.24.4
pandas 2.0.3
scipy 1.10.1
sklearn 1.3.0


Проверка версии python и библиотеки tensorflow


from platform import python_version
print('python: ' + python_version())

import tensorflow as tf
print('tf: ' + tf.__version__)


python: 3.8.10
tf: 2.3.4