Which modules are guaranteed to be included in Blender's custom Python build?
Asked
Active
Viewed 701 times
2 Answers
21
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.
brecht
- 7,471
- 30
- 48
7
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.
zeffii
- 39,634
- 9
- 103
- 186
help('modules')could also prove useful.. – iKlsR Jun 16 '13 at 22:29