error when running python box

Guillaume

New member
Hello,

I'm coming to you with a question about the configuration of the Python interface in Anatella.

Although all the LEDs are green and marked OK , I get an error when I try to run the Anatella script.

Can you help me to resolve this error,

Thanks in advance,
Kind regards,
 

Support

Administrator
Staff member
Hello,

I'm coming to you with a question about the configuration of the Python interface in Anatella.

Although all the LEDs are green and marked OK , I get an error when I try to run the Anatella script.

Can you help me to resolve this error,

Thanks in advance,
Kind regards,
Since Python 3.7, it is necessary to modify the Windows ‘PATH’ environment variable for Python to start (this is not necessary in Python 3.5 or Python 3.6).

Also, you need to use Python 3.7.3. which is available here (just unzip the ZIP file is ok).

To make the Python box work you need to:
1. Finish installing Python 3.7.3: To do this:
1.1. open ‘cmd
1.2. run in cmd:
setx PATH ‘C:\soft\Anaconda373;C:\soft\Anaconda373\Library\mingw-w64\bin;C:\soft\Anaconda373\Library\usr\bin;C:\soft\Anaconda373\Library\bin;C:\soft\Anaconda373\Scripts;C:\soft\Anaconda373\bin;C:\soft\Anaconda373\condabin’

Above, we assume that Python is installed in the ‘C:\soft\Anaconda373’ directory, which may not be the case for you. If you have admin rights, then it's even better to change the ‘PATH’ variable for all users on the machine (because the above command only changes the PATH for your user).
 
Top