ardent red wrote:System > System Information returns a python error.
That looks like a bug in the sysinfo.py script. Different question: what version of Blender do you have / how did you install it? (I used blender-2.48a-OSX-10.4-py2.5-intel.zip from the official Blender download page.) You could also run the
import sys; sys.path commands in the Blender Interactive Python Console to find out what Python installation it is using (to retrieve the output in a copyable form, right-click on the console and choose
Write Output Data (blue), then go to a text editor window and open the file it created).
- Code: Select all
>>> import sys; sys.path
['', '/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python25.zip', …
Looks good. This is the default Python installation that comes with Mac OS X.
and here's the full Crypto compile stuff, including the error:
- Code: Select all
…
src/MD2.c:14:20: error: string.h: No such file or directory
src/MD2.c:15:20: error: Python.h: No such file or directory
Hmm, you have gcc but not string.h or Python.h? Strange. Have you installed the Apple Developer Tools (from your Mac OS X DVD), including the optional
UNIX Development Support package? If you are not sure, I guess it can't hurt doing it again. (If you feel like persevering - again, as far as I understand, PyCrypto is optional for PyPRP and not needed unless you want to read/write Myst V ages or create ages for Alcugs servers.)
Don't worry, we'll eventually get to the root of this, although it may take us a while if we continue at our current pace of one question per day…
