moonglow / FlashForge_Marlin

:shark: Marlin firmware for FlashForge Dreamer/Dreamer NX/Inventor, Bosch Dremel 3D20 3D, PowerSpec Ultra 3D and Monoprice Inventor 1

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error in Wiki Linux Installation Guide?

Mrnt opened this issue · comments

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 !