Tagged Questions
3
votes
2answers
124 views
How to know the system is Debian or CentOS in Python?
I want to write some install scripts by python, it should know the OS to choose either apt command or yum command.
It seems sys.platform can tell 'win32' or the others, but how to know it is working ...
2
votes
3answers
114 views
Determine if package installed with Yum Python API?
TLDR; I need simple a Python call given a package name (e.g., 'make') to see if it's installed; if not, install it (I can do the latter part).
Problem:
So there are a few code examples given in ...
2
votes
2answers
215 views
Amazon Linux AMI EC2 - librrd.so.2 dependency issue
I am attemping to install OpsCenter for Cassandra, and using the the standard REHL image. I can't figure out how to get this to work. Another version of EPEL perhaps?
yum install opscenter....
...
2
votes
2answers
951 views
Given an rpm package name, query the yum database for updates
I was imagining a 3-line Python script to do this but the yum Python API is impenetrable. Is this even possible?
Is writing a wrapper for 'yum list package-name' the only way to do this?
1
vote
2answers
177 views
MySQLdb module installation problem for python
I installed MySQLdb module in centos VPS using yum and it says successfully installed producing no error. but when I browse the python site it displays the error. "Error loading MySQLdb module: No ...
1
vote
2answers
111 views
Best practices to make an Installer - Can I use Yum
I am new to installers and up until now have just been manually executing a line by line list of items to install. Clearly this is not a scaleable approach, especially when new servers need to be ...
0
votes
1answer
19 views
how to install python-devel for 2.6 version?
i use centos 5.4 ,the default python version is python2.4,so i use the python2.6.2.tar.gz compile a python 2.6 version
and now i want to intstall board review project it need install python-devel ...
0
votes
1answer
288 views
Python cannot find dateutil.relativedelta
Im trying to run a program using paster serve but I keep getting the error:
ImportError: No module named dateutil.relativedelta
Im running python version 2.6.7 and dateutil version 1.5, so it ...
0
votes
1answer
29 views
Yum : How to retrieve option value from repositories configuration using python
I have instance of YumRepository class. Is there a way to retrieve the option from configuration file of a repository, that I've added manually ?
Standard options are available as attributes of ...
-1
votes
1answer
78 views
Simple python script strange exception
have got following python script
import dbus.service
import gobject
import yum
def main():
print "in main"
if __name__ == "__main__":
main()
The exit status is 0 when script is executed. ...