Installation of picrawler - problem

Hello.

I am following instructions to install modules required for running Picrawler

After cloning of picrawler.git I am not able to run sudo python3 setup.py install.

. can’t open file ‘/home/pi/picrawler/setup.py’: [Errno 2] No such file or directory

Seems file is not there.

thanks for the help.

T

We apologize for the confusion. The issue is that our software was recently updated, but the documentation has not yet been revised to reflect the changes.Please use the following commands to download and install the PiCrawler software correctly:

cd ~/
git clone --depth=1 https://github.com/sunfounder/picrawler.git
sudo pip3 install ~/picrawler --break-system-packages

Additionally, you need to use the 2.5.x version of the Robot HAT library. Please uninstall the old version and reinstall the correct one using these commands:

sudo pip3 uninstall -y --break robot_hat
sudo rm -rf ~/robot-hat
cd ~/
git clone -b 2.5.x --depth=1 https://github.com/sunfounder/robot-hat.git
cd robot-hat
sudo python3 install.py
1 Like

Thanks. This worked.