Trying to install Flatcam on Ubuntu 20.04 but some dependencies are broken

Trying to install Flatcam on Ubuntu 20.04 but some dependencies are broken, but I could fix some. Now I stopped here

dell@dell-inspiron1525:~/Downloads/flatcam$ python FlatCAMApp.py
Traceback (most recent call last): File "FlatCAMApp.py", line 11, in <module> import urllib.request, urllib.parse, urllib.error
ImportError: No module named request

Can someone help me to continue with the installation ?

4

1 Answer

Not directly Ubuntu related, but I can try answer anyway.

It looks to me that you didn't install all dependencies via pip prior to running the script/software.

pip install -r requirements.txt

This installs all packages listed in the requirements.txt file in the root of the repository, which should hopefully resolve all modules necessary to run it.

Run that, then try again, it should hopefully be fine.

4

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like