This website uses cookies essential to its operation, for analytics, and for personalized content. By continuing to browse this site, you acknowledge the use of cookies. For details on cookie usage on our site, read our Privacy Policy
I was running into an issue installing the BPA 3.33.0 for ML and running the command provided would end with errors. after parsing the log I found the following:
ImportError: cannot import name 'sysconfig' from 'distutils' (/usr/lib/python3.7/distutils/__init__.py)
I researched and the issue was python 3.7 disutils was not installed which wasn't mentioned in the install for prereqs. I was able to resolve it by running the following:
sudo apt-get install python3.7-distutils
I hope this helps someone who's running into this issue.
... View more