21
$\begingroup$

Which modules are guaranteed to be included in Blender's custom Python build?

$\endgroup$

2 Answers 2

21
$\begingroup$

Everything included in the Python standard library, except the modules tkinter, turtledemo, distutils, idlelib, lib2to3 and test.

Here's the rationale for why these modules were not included.

$\endgroup$
2
7
$\begingroup$

Run from console to find out.

import sys
print(sys.path)

anything located in any of these directories. the standard python library stuff will be located in ...\\x.xx\\python\\lib, where x.xx is the release version, currently 2.67.

$\endgroup$

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .