You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that Ubuntu 18 (+ 16 IIRC) don't automatically install the distutils package. A prerequisite for successful build from source is therefore to perform this step before running the setup.py script:
sudo apt-get install python3-distutils
Otherwise users will get this error:
$ python3 setup.py install
Traceback (most recent call last):
File "setup.py", line 6, in
from distutils.core import setup
ModuleNotFoundError: No module named 'distutils.core'
The text was updated successfully, but these errors were encountered:
in CONTRIBUTING we have full list of packages necessary for installation/development, but it's just RHEL 7 and Fedora. Could you propose a list for Ubuntu? Or you're thinking about something different?
Note that Ubuntu 18 (+ 16 IIRC) don't automatically install the distutils package. A prerequisite for successful build from source is therefore to perform this step before running the setup.py script:
sudo apt-get install python3-distutils
Otherwise users will get this error:
$ python3 setup.py install
Traceback (most recent call last):
File "setup.py", line 6, in
from distutils.core import setup
ModuleNotFoundError: No module named 'distutils.core'
The text was updated successfully, but these errors were encountered: