moonglow/FlashForge_Marlin

Error in Wiki Linux Installation Guide?

Mrnt opened this issue · 1 comments

Mrnt commented

I think that this page, Linux Installation Guide, (there is also a typo in the title) may have an error in the instructions:

sudo apt-get install python3
sudo apt-get install python-pip
sudo apt-get install libusb-dev
sudo pip install pyusb

On Raspbian (which seems to already have python 2.x) the above installs pip2 and sudo pip install pyusb invokes pip2

The following however seems to work correctly on Raspbian:

sudo apt-get install python3
sudo apt-get install python3-pip
sudo apt-get install libusb-dev
sudo pip3 install pyusb

Thank you for tips !