Архив метки: Linux

Ubuntu 19.10 ошибки при настройке PyCharm

В процессе настройки PyCharm под Ubuntu 19.10 возникают ошибки.

ModuleNotFoundError: No module named ‘distutils.core’

apt install python3-distutils

ModuleNotFoundError: No module named ‘setuptools’

apt install python3-setuptools

error in ‘egg_base’ option: ‘src’ does not exist or is not a directory

apt install python3-pip

Или все одной командой:

apt install -y  python3-pip  python3-setuptools  python3-distutils