I finally got my Pi connected to the internet through a ethernet cable. I was able to access github and install the touch driver for my 7" display. I'm trying to install OctoDash. I'm using this line, as shown on the OctoDash website:
bash <(wget -qO- https://github.com/UnchartedBull/OctoDash/raw/main/scripts/install.sh)
but when I hit enter all I get is a '>' and the curser. No error message or any indication of what's wrong. I checked the line I typed over and over to make sure I didn't type it wrong. Is the link broken? Is there another way to install OctoDash?
I copied the line from OctoDash and it worked for me. What you describe sounds very much like some error occurred selecting and copying the bit. Just try it again or even type it in carefully
Try
bash <(curl -s -L https://github.com/UnchartedBull/OctoDash/raw/main/scripts/install.sh)
If that also doesn't work try
wget https://github.com/UnchartedBull/OctoDash/raw/main/scripts/install.sh
chmod +x install.sh
./install.sh
LOL, after hours of checking and relooking if turned out that I left the last character in the line, the ')' out and, of course, it didn't work. {facepalm}
1 Like
Happens to the best
Happy printing