I just take the time to reinstall and this is what I have with this command…
poppy@poppy:~/dev/pypot$ sudo python setup.py install develop
(…)
Using /usr/lib/python2.7/dist-packages
Finished processing dependencies for pypot==2.5.0
running develop
Checking .pth file support in build/bdist.linux-armv7l/egg
/usr/bin/python -E -c pass
TEST FAILED: build/bdist.linux-armv7l/egg does NOT support .pth files
error: bad install directory or PYTHONPATH
You are attempting to install a package to a directory that is not
on PYTHONPATH and which Python does not read “.pth” files from. The
installation directory you specified (via --install-dir, --prefix, or
the distutils default setting) was:
build/bdist.linux-armv7l/egg
and your PYTHONPATH environment variable currently contains:
''
Here are some of your options for correcting the problem:
You can choose a different installation directory, i.e., one that is
on PYTHONPATH or supports .pth files
You can add the installation directory to the PYTHONPATH environment
variable. (It must then also be on PYTHONPATH whenever you run
Python and want to use the package(s) you are installing.)
You can set up the installation directory to support “.pth” files by
using one of the approaches described here:
Yep the default temperature limit is pretty low, you can dynamically change it doing something like:
from poppy.creatures import PoppyHumanoid
poppy = PoppyHumanoid()
poppy.temperature_monitoring.temp_limit = 55
Also for the moment, I have the same temp_limit for all motor but the “head_y” one is always more hot than others and it is normal. It would be maybe better to have specific temp_limit per motor groups.
Yet it is great to know that this feature is working on an other Poppy
I updated the code and removed the head motors from the temperature monitor primitive.
You can git pull the poppy-humanoid repo and it should do the job until we find a good way to handle different temperature limits for each motor
We found a way to easilly install and update the libraries directly from the github repos by using pip. I share with you hoping it can help (not sure the uninstall is necessary, but doesn’t harm).