NodeBox3 on Raspberry Pi
Hi - I'd like to try nodebox on a pi4 (please tell me if this is a fool's errand).
I've tried the linux download through terminal and got this:
pi@raspberrypi:~ $ git clone https://github.com/nodebox/nodebox.git
Cloning into 'nodebox'...
remote: Enumerating objects: 20622, done.
error: RPC failed; curl 56 GnuTLS recv error (-9): Error decoding the received TLS packet.
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
Is this an easy fix?
Thanks, Ben
Keyboard shortcuts
Generic
? | Show this help |
---|---|
ESC | Blurs the current field |
Comment Form
r | Focus the comment reply box |
---|---|
^ + ↩ | Submit the comment |
You can use Command ⌘
instead of Control ^
on Mac
Support Staff 1 Posted by Frederik De Ble... on 28 Sep, 2019 12:36 PM
I've run NodeBox 3 on a Pi without any issues before.
Could you try again? This seems to just be a problem with your network connection.
2 Posted by Ben Rogers on 28 Sep, 2019 02:27 PM
Thanks Frederik,
In between times, I found a thread on the pi site which got me past: sudo
apt-get install git-core openjdk-7-jdk ant
git clone git://github.com/nodebox/nodebox.git
cd nodebox
ant run
But still have this:
pi@raspberrypi:~ $ git clone git://github.com/nodebox/nodebox.git
Cloning into 'nodebox'...
fatal: unable to connect to github.com:
github.com[0: 62.24.151.225]: errno=Connection refused
github.com[1: 62.24.138.17]: errno=Connection refused
pi@raspberrypi:~ $ cd nodebox
bash: cd: nodebox: No such file or directory
pi@raspberrypi:~ $ ant run
Buildfile: build.xml does not exist!
Build failed
pi@raspberrypi:~ $
I've also LAN5 ed-up in cast that's the problem. Same response, only
quicker!
Ben
Support Staff 3 Posted by Frederik De Ble... on 28 Sep, 2019 02:29 PM
Could you try:
git clone https://github.com/nodebox/nodebox.git
So using https instead of the Git protocol? Maybe it's blocked by a firewall or something.
4 Posted by Ben Rogers on 28 Sep, 2019 02:36 PM
Have just tried this:
sudo apt-get install git-all
then yours and got...
pi@raspberrypi:~ $ git clone https://github.com/nodebox/nodebox.git
Cloning into 'nodebox'...
remote: Enumerating objects: 20622, done.
error: RPC failed; curl 56 GnuTLS recv error (-9): Error decoding the
received TLS packet.
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
The original doesn't work either....
5 Posted by Ben Rogers on 28 Sep, 2019 02:36 PM
I'm plugged straight into my home router - so no proxy business.
Support Staff 6 Posted by Frederik De Ble... on 28 Sep, 2019 04:15 PM
That's very weird. Well, technically you don't really need to download NodeBox through Git. You can also use a ZIP file. Here's the one straight from GitHub:
https://github.com/nodebox/nodebox/archive/master.zip
You should unpack this, cd into the folder (I think it will be called nodebox-master), then run
ant run
.7 Posted by Ben Rogers on 29 Sep, 2019 02:02 PM
That worked - thank you Frederik,
Ben