Ok, I looked through http://svn.python.org/projects/python/branches/release31-maint/ and I found an interesting " readme " talking about the pyconfig.h file .
At http://svn.python.org/projects/python/branches/release31-maint/PC/pyconfig.h on line 82-83 there is a solution to my problem:
#ifndef PYTHONPATH
# define PYTHONPATH L".\\DLLs;.\\lib;.\\lib\\plat-win"
, "PYTHONPATH" define, python, , GNU/Linux, Window, -, Python!
, ...
EDIT: , !
Python :
make PYTHONPATH=../lib:../Lib:./lib:./Lib
... Python `../lib '!
GNU/Linux, Windows, USB-, :
/mnt/key/
βββ AUTORUN.INF
βββ Lib
β βββ os.py
β βββ sys.py
β βββ ...
β βββ (Here i'll put the Python Standard Library)
βββ Linux
β βββ python
βββ Windows
βββ python.exe
βββ pythonw.exe
user563964