Server access problem

Hello

I have a problem to access to the server.

I install my odroid U3 normaly, but when I go to poppy.local on my browser, I only can see “config wireless” :

instead of :

Did I miss something ?

No.

You’re using poppy_install and this web interface is available only with the “new” and unstable poppy-installer.

This should work (change the env variables below depending on your config) :

sudo apt-get update
export POPPY_USER=poppy
export POPPY_CREATURE=poppy-torso
curl https://raw.githubusercontent.com/poppy-project/poppy-installer/master/install-deps/install-web-apps.sh | bash

Thanks, It’s work !

But now, I can access to the monitoring section, and see or move my motors, but I can’t open a ipython notebook.

Do I have to run a server manualy or it’s normaly automatic ?

It’s a bug (now fixed).
This should make it works works

mkdir -p $HOME/notebooks        
IPYTHON=$(which ipython)
sudo sed -i.bkp "/^exit/i #added lines\nsu poppy <<'EOF'\n$IPYTHON notebook --ip 0.0.0.0 --no-browser --no-mathjax $HOME/notebooks &\nEOF\n" /etc/rc.local

It’s perfect, I can control my poppy with notebook.
Thanks again.

And one last thing I have a problem with, because I try to control poppy with API rest now.

I start the server on the odroid with :

poppy-services --http poppy-torso

It works, but then I can’t make a notebook for the client (like here) because I have a problem to import from_remote :

ImportError: No module named gevent.event

Is it just a little bug or the from_remote doesn’t work anymore ?