moonglow / FlashForge_Marlin

:shark: Marlin firmware for FlashForge Dreamer/Dreamer NX/Inventor, Bosch Dremel 3D20 3D, PowerSpec Ultra 3D and Monoprice Inventor 1
87 stars 26 forks source link

Error in Wiki Linux Installation Guide? #92

Closed Mrnt closed 2 years ago

Mrnt commented 2 years ago

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
moonglow commented 2 years ago

Thank you for tips !