Hi
Thanks Christian for the
otool command

. So for this point the difference come from blender itself.
Code: Select all
$ otool -L /Applications/blender-2.47-OSX-10.4-py2.5-intel/blender.app/Contents/MacOS/blender | grep Python
/Library/Frameworks/Python.framework/Versions/2.5/Python (compatibility version 2.5.0, current version 2.5.0)
$ otool -L /Applications/blender-2.49b-OSX-10.5-py2.5-intel/blender.app/Contents/MacOS/blender | grep Python
/System/Library/Frameworks/Python.framework/Versions/2.5/Python (compatibility version 2.5.0, current version 2.5.1)
$ otool -L /Applications/blender-2.49-py2.5/blender.app/Contents/MacOS/blender | grep Python /Library/Frameworks/Python.framework/Versions/2.5/Python (compatibility version 2.5.0, current version 2.5.0)
For the Image module, I wrote it wrongly in my previous post, you can read Image instead of image. So I'm sorry, but I don't understand: I have PIL installed where blender is looking for and it is only found by the 2.47 and thz 2.49 versions in the /Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/ folder. If I suppressed it, it's not found in the blender script folder.
Code: Select all
$ /Applications/blender-2.47-OSX-10.4-py2.5-intel/blender.app/Contents/MacOS/blender Compiled with Python version 2.5.1.
Checking for installed Python... got it!
Traceback (most recent call last):
File "<string>", line 55, in <module>
File "/Applications/blender-2.49b-OSX-10.5-py2.5-intel/blender.app/Contents/MacOS/.blender/scripts/prp_ResManager.py", line 35, in <module>
from prp_File import *
File "/Applications/blender-2.49b-OSX-10.5-py2.5-intel/blender.app/Contents/MacOS/.blender/scripts/prp_File.py", line 20, in <module>
from prp_AnimClasses import *
File "/Applications/blender-2.49b-OSX-10.5-py2.5-intel/blender.app/Contents/MacOS/.blender/scripts/prp_AnimClasses.py", line 30, in <module>
import md5, random, binascii, cStringIO, copy, Image, math, struct, StringIO, os, os.path, pickle
ImportError: No module named Image
Traceback (most recent call last):
File "<string>", line 55, in <module>
File "/Applications/blender-2.49b-OSX-10.5-py2.5-intel/blender.app/Contents/MacOS/.blender/scripts/prp_ResManager.py", line 35, in <module>
from prp_File import *
File "/Applications/blender-2.49b-OSX-10.5-py2.5-intel/blender.app/Contents/MacOS/.blender/scripts/prp_File.py", line 20, in <module>
from prp_AnimClasses import *
File "/Applications/blender-2.49b-OSX-10.5-py2.5-intel/blender.app/Contents/MacOS/.blender/scripts/prp_AnimClasses.py", line 30, in <module>
import md5, random, binascii, cStringIO, copy, Image, math, struct, StringIO, os, os.path, pickle
ImportError: No module named Image
Blender quit
$ /Applications/blender-2.49-py2.5/blender.app/Contents/MacOS/blender Compiled with Python version 2.5.1.
Checking for installed Python... got it!
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/Applications/blender-2.49b-OSX-10.5-py2.5-intel/blender.app/Contents/MacOS/.blender/scripts/prp_Export.py", line 55, in <module>
from prp_ResManager import *
File "/Applications/blender-2.49b-OSX-10.5-py2.5-intel/blender.app/Contents/MacOS/.blender/scripts/prp_ResManager.py", line 35, in <module>
from prp_File import *
File "/Applications/blender-2.49b-OSX-10.5-py2.5-intel/blender.app/Contents/MacOS/.blender/scripts/prp_File.py", line 20, in <module>
from prp_AnimClasses import *
File "/Applications/blender-2.49b-OSX-10.5-py2.5-intel/blender.app/Contents/MacOS/.blender/scripts/prp_AnimClasses.py", line 30, in <module>
import md5, random, binascii, cStringIO, copy, Image, math, struct, StringIO, os, os.path, pickle
ImportError: No module named Image
Blender quit
I think to something ... I do a test ...
Last year I had to put the PIL folder in the blender script folder (not directly the files) to have an Image module, found, now it's not that so simple. I just tried to put the files directly in the blender script folder and it's working, Image module is found in the blender script folder.
Now an other question, I have read in the wiki that the installation of the PyPRP 1.6 will change and we will have to put the folder in the blender script folder. Do you think it will works for me ?
thanks for your patience.
See you soon.