0

I want to install numpy,PIL packages into Nao robot's hardware for my project. (python 2.7, Nao 1.14.5 Gentoo lınux) How Could I do that? Thanks in advance.

1 Answers1

0

As mentioned here: You might also not have root access on Nao, which limits where you can install.

you can install python packages with pip install but you need the --user tag

upgrade pip as descriped in the other post and

try

pip install --user yourPackage    

respective:

/home/nao/.local/bin/pip install --user yourPackage

this will install the package to a directory where you have write access without root.

TVK
  • 1,042
  • 7
  • 21
  • How can I acces Nao's hardware to install packages? from pc or whatelse? – Mehmet Baki Nov 22 '18 at 19:37
  • Well, you could connect via ssh with a programm called putty. How depends on your OS. Please read the documentation here: http://doc.aldebaran.com/2-5/dev/tools/opennao.html#accessing-nao-over-ssh – TVK Nov 23 '18 at 07:12