Brief introduction
This refers to the modules is not a Linux kernel-related module, but for software multi-version control of an open source software package, such as the system has both python2.7 and python3.5, the use of modules software can make it necessary to select the appropriate software version.
Software address
http://modules.sourceforge.net/(downloadable source package)
Module command:http://modules.sourceforge.net/man/module.html
Modulefile:http://modules.sourceforge.net/man/modulefile.html
Compiling the installation
1) Compile and install two steps, one is to install TCL, the second is to install modules, the steps are Configure,make,make install (./configure--help can view configure parameters)
2) need to install TCL package, software for http://tcl.activestate.com/, this time select 8.5.6 version, compile and install the reference http://tcl.activestate.com/doc/howto/compile.html
3) Then compile and install modules to set the module's configure--with-tcl-lib parameter, if error "Cmdmodule.c:643:35:error: ' Tcl_interp ' has no member named ' ErrorLine ', configure when added cppflags= "-duse_interp_errorline".
4) Compile and install the results
Demo Configuration python2.7 and python3.5
Continue ...
Linux-modules Software