Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
Python
[2.4.2] Compiling Python with packages?
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="Martin v. Löwis, post: 3428978"] I need to compile Python with the packages "socket,sys,time,os", but No, it won't. You don't give any arguments to configure normally, when building Python. Instead, setup.py will detect what libraries are on your system, and use them. There are a few --enable and --with flags supported; ask --help what they are. The modules you want to have (socket, sys, time, and os) are always built. There is sys.builtin_module_names. However, some modules are not builtin (they are shared libraries instead); it's easiest to ls build/lib.<system> after compiling Python to see what modules have been built. Regards, Martin [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
Python
[2.4.2] Compiling Python with packages?
Top