Hello,
I have been reading about creating an RPM for Python 2.6.4. In this page: http://docs.python.org/distutils/builtdist.html it says you can create an RPM of the current Python using python setup.py bdist_rpm
. The question's I have are:
- Do you have to type this command in your Python installation directory?
- Does this command, package all the modules you have installed into the RPM?
- Is this the correct command to do this?
- Are there any other suggestion's that would make this easier?
Okay I sorted this out using checkinstall.
I downloaded checkinstall
from http://www.asic-linux.com.mx/~izto/checkinstall/.
I then installed the package but had to enter /usr/local/sbin/checkinstall
into my PATH to make it work. I then entered the next copmmand to get my RPM directory going.
yum install rpm-build
I then cd
into the Python module and entered this command:
checkinstall -R --nodoc --delspec=no --exclude=/selinux python2.6 ./setup.py install
This command replaces the command checkinstall
as your installing python libraries through setup.py instead of an ordinary make.
I then went through the checkinstall
process. The finished RPM was placed into /usr/src/redhat/RPMS/i386/
.
Note: THIS IS FOR LINUX RED HAT.