I keep on gettin this message when i run most scripts, i understand that blender doesn’t come with full python implemetation and you have to install a newer version of python (which i’ve done) and then change the enivronment variables(I’m using windows xp) but i don’t really know what to change them to.
Double click python.exe in Explorer:
The answer should be something like this:
Python 2.0 (…)
…
Type “copyright”, “credits” or “license” for more information.
>>>
Check your PYTHONPATH. Still in the Python interpreter type:
>>> import sys
>>> print sys.path
The answer should be something like this:
[’’, ‘c:\python20’, ‘c:\python20\dlls’, ‘c:\python20\lib’, ‘c:\python20\lib\lib-tk’]
>>> (to leave the interpreter press CONTROL+ZKEY)
Try the same within Blender: Start Blender, open a text window (SHIFT+F11), create a new text (ALT+SHIFT+FKEY), type in the following lines:
import sys
print sys.path
Start the script with ALT+PKEY and watch the output in your shell.
To make sure that your PYTHONPATH is correct you can edit your autoexec.bat file and add the following line:
set PYTHONPATH=C:\PYTHON20;C:\PYTHON20\DLLS;C:\PYTHON20\LIB;C:\PYTHON20\LIB\LIB-TK
Thanx loads i’ve the problem for ages and just thought it was me, i did everything except i added an environment variable instead of actually editting the autoexec file coz i’d probably delete something
thanx again
PS whats the best or most problem free version of python to use with blender(i’m already getting probs due to conflicts with versions)