0
votes
1answer
27 views

ffmpeg hangs when run in background

If I run ffmpeg as follows: ffmpeg -i H264-media-4.264 4.avi It works OK (i.e. 4.avi created OK). However, if I try to run it in background: ffmpeg -i H264-media-4.264 4.avi & it hangs! (and ...
0
votes
1answer
114 views

How To: Install Spyder (Python IDE) on CentOS 6.4

I've been spending the past few days trying to install Spyder (the Python IDE) on CentOS 6.4. There are a couple of issues with installing Spyder on CentOS 6.4: the Qt RPM package does not include ...
0
votes
1answer
35 views

How do I configure chrooted account on CentOS 6 to use mercurial (python library issue)

I'm trying to eradicate FTP from our web publishing routines and have installed Mercurial on our server. I've been pushing to the live repositories for some time to various user accounts on the ...
-1
votes
1answer
40 views

Program to check a servers activity and usage [closed]

I am making a new version of a program where it in short use ssh to connect to multiple VM clients to check if the machine is still in use. I have made a version of this in Perl, but I want to ...
3
votes
2answers
71 views

How to make python script run as service?

I want to run a python script in a CENTOS server: #!/usr/bin/env python import socket try: import thread except ImportError: import _thread as thread #Py3K changed it. class ...
0
votes
1answer
136 views

CentOS 6.x and jansson library problems

My OS is CentOS 6.4 x86_64bit. And I was trying to use jansson lib just like what their tutorial shows. Here is my history. I downloaded github_commits.c I downloaded curl lib. I got some problem ...
0
votes
0answers
34 views

why I get different output running the same program in two different machine with same specification

I have a python program which uses bio-python and blast and it accepts the command line. I run this program on Centos 5.3 final. The problem is that I have this on two different machine with exactly ...
1
vote
2answers
30 views

which version of program will execute? the one in the /usr/bin or the one in /usr/local/bin?

I have python in both /usr/bin and /usr/local/bin. Now I have this question that which one will execute if I call python? I know that I can check with which python command to see which one is which ...
0
votes
0answers
18 views

how can i choose the destination path for my python in the Centos 5.3 [migrated]

This may sound stupid but I'm trying to install python but it is installed in /usr/bin/ but I want to install it on /usr/local/bin. how can I do that?
0
votes
1answer
52 views

how to install urwid 1.1.1 on CentOS 6.4?

To install urwid 1.1.1 on CentOS 6.4 I already tried: yum install python-urwid which installs urwid 0.9.9. Then I manually downloaded urwid 1.1.1 and run: cd /mnt/hgfs/Shared/urwid-1.1.1 python ...
1
vote
0answers
74 views

Installing pure-python package as subpackage of another platform-dependent package

I have a pure-python package B and a platform-dependent package A (i.e. A contains C-extension module). I wish to install B as a subpackage of A, and the expected hierarchy is like, ...
1
vote
2answers
423 views

How to install a module for python 2.6 on CentOS?

After I install python 2.6 on CentOS by: wget http://download.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm sudo rpm -ivh epel-release-5-4.noarch.rpm yum install python26 Then I ...
1
vote
2answers
74 views

Python 3.x installed, but python UNIX commands starts Python 2.x [closed]

I downloaded python 3.3.0 which is latest version and i finished installing now I want to run it in my centOS linux but when i type it in console "python" , python 2.7.0 which is bundled with os ...
0
votes
3answers
102 views

sudo python runs old python version

I have installed python 2.7.3 on CentOS 6 with thse instructions http://villaroad.com/2010/10/rolling-python-2-6-2-on-centos-5-3/ I have added aliases to bash_profile of both root and myuser for ...
4
votes
1answer
248 views

Installing Distribute when doing an altinstall of Python

I'm doing an altinstall of Python 2.7.3 on CentOS 5.8, and I want distribute which gives pip and all that jazz. However I'm having trouble understanding the correct procedure, and the setup script for ...
-1
votes
1answer
88 views

centos6.3 install scrapy failed,bash: scrapy: command not found

I install all package: now I have a test: Type "help", "copyright", "credits" or "license" for more information. import scrapy from scrapy.selector import HtmlXPathSelector exit() ...
0
votes
1answer
186 views

Pika/RabbitMQ Connection Problems - Running VMWare CentOS 6.3

I just set up a fresh VMWare install of CentOS 6.3. The internet is working and everything seems functional on it. I am trying to experiment with RabbitMQ but I am getting stuck at step 1 of their ...
0
votes
0answers
143 views

Target WSGI script not found or unable to stat 404 mesage when i access

I am stuck at this issue. And I have Googled the issue but couldn't fine the solution. Directory permissions of sample are 755. Here are my configurations WSGIScriptAlias /blc ...
0
votes
2answers
602 views

centos Apache "Child pid *** exit signal Segmentation fault (11)” in error_log

i'm getting a lot "Child pid XXXX exit signal Segmentation fault (11)" in my apache log file I tried the solution from here to find the error in no avail. Please help me understand this error it has ...
0
votes
0answers
33 views

python: getstatusoutput() leading segmentation error often

I am using getstatusoutput() to run commands in python. cmd = "casperjs casperjsscript.js \"mytesturl.com/test_page\""; from commands import getstatusoutput print getstatusoutput(cmd) I have ...
3
votes
1answer
192 views

What is needed to use gdb 7's support for debugging Python programs?

I'd like to use gdb 7's support for debugging Python "inferior processes". What do I need to be able to do that? For example: What flags does the inferior Python's configure script need to have ...
0
votes
0answers
138 views

unable to install pyodbc in centos 6.3 ?

I've Installed packages: yum install python-setuptools yum install gcc-c++ yum install unixODBC-devel but still getting below error while running pip-python install pyodbc error: command 'gcc' ...
0
votes
1answer
68 views

Apache looks for Python 2.6 instead of 2.7

My OS already has Python 2.6.6 and I've installed Python 2.7.3 as an alternative. (Python's working fine). I've installed mod_python also, but when I try to execute a Python file on an Apache server, ...
0
votes
1answer
90 views

Can't get basic Django setup working on VPS

I'm trying to deploy a Django website on a VPS (CentOS) and I'm running into problem right from start. Here is what I've done: ssh root@myserver.com cd /home/mydomain/public_html pip install django ...
0
votes
1answer
102 views

Create Python Script RPM for CentOS

I installed a minimal version of CentOS 6.3 on a virtual machine. I then used yum install python to install python-2.6.6-29.e16_3.3.x86_64 to /usr/bin/. I have a custom python script that I wrote and ...
0
votes
1answer
185 views

Python lxml etree on CentOS 6.3

I have Centos 6 on my server and I've been trying to install a few packages (modules) for it. I just brought the ones on my windows to the ftp client in /usr/lib/python2.6/site-packages, but when I ...
1
vote
2answers
107 views

Creating a Python CentOS ISO

What is the best approach to package a python based application on a bare bones CentOS/Linux operation system and then create an iso image.
1
vote
1answer
156 views

Deploy Mezzanine CMS on CentOS

I have a really big problem ... I'm trying to make a production server (on CentoOS 6) to deploy a mezzanine cms on it . The problem is that I've researched it a lot and cannot find something to work. ...
0
votes
1answer
797 views

Installing MySQLDB on Python 2.7.3 under CentOS

I need to install Python 2.7 on a machine, from source, alongside the existing version on the machine (2.4). I have compiled and installed Python successfully, but when I try to run a script calling ...
2
votes
2answers
101 views

How can i split the text file in dictonary in python

I have this text file application/andrew-inset ez application/applixware aw application/atom+xml atom ...
-1
votes
2answers
277 views

simple errors in python urllib script

I have copied this code from the other SO question but i am not able to solve the error i am getting this is my code import os import urllib2 import sys d = ...
0
votes
0answers
117 views

Python apps to drastically slow down and use 100% CPU after 'yum update' on RHEL server

Processing apps built in Python were listeners for RabbitMQ messages and converted message into another JSON message and re-published it to another exchange. It used to process over 10,000 messages / ...
2
votes
1answer
2k views

bash: mkvirtualenv: command not found

After following the instructions on Doug Hellman's virtualenvwrapper post, I still could not fire up a test environment. [mpenning@tsunami ~]$ mkvirtualenv test -bash: mkvirtualenv: command not found ...
0
votes
1answer
106 views

django sphinx search always get none from query

i using this part of code to getting docs from sphinx but sphinx Query always return None. But if i execute code from command line i get correct result, what wrong? def search_query(query, ...
1
vote
1answer
80 views

Confused with virtual environments in python django

I have my Django project folder and inside that i have my virtualenv folder I have few questions I have packages already installed in main installation and as well in virtual env. Dont those ...
0
votes
1answer
259 views

virtualenv in python2.5.2

I'm really new to Linux environment and I'm trying to use virtualenv I have CentOS 5.8 running and at first it had Python 2.4 so I upgraded it to 2.5.2 But now when I run virtualenv /test/a it still ...
0
votes
1answer
138 views

Python cannot print the client IP or client hostname

How can I print the IP or hostname of the client pc who delete a file in my shared folder?This code is working but it only print my own IP and Hostname not the other pc that delete a file inside my ...
0
votes
1answer
168 views

Python Popen can't open bash shell in CentOS/Red Hat

I can't open a bash shell in CentOS with python 2.7, I'm able to do so in python 2.6.6 Debian. What has changed? I tried a simple bash process substitution: from subprocess import Popen cmd="""cat ...
0
votes
1answer
63 views

Error with Conch when installing Kojoney (SSH Honeypot)

I'm trying to setup kojoney, a ssh honeypot, on Centos 6.3, but I'm having issues getting the installation to complete successfully. For reference, I have been using two tutorials: ...
1
vote
0answers
112 views

Python Installation throwing lots of MemoryError()'s

I just installed (and re-installed) python 2.7.3 on my centos 6.3 server with cpanel built into it to the /opt/python2.7.3 directory on my system. I also installed it with the --enable-shared flag ...
1
vote
1answer
74 views

Askbot - No module named xdg.Config

I have installed Python 2.7.3 + Django 1.3.1 + Askbot and these requirements When I run my server on port 8000, and I try to establishing a connection with a browser I have this unusual error: *Could ...
0
votes
1answer
131 views

Mercurial and python 2.6 [closed]

I try to install mercurial on a centos vps-server with "yum install mercurial" but it says it needs python2.4 in order to install it. I have python2.6 installed. Is there a way to get past this?
1
vote
2answers
288 views

Cannot copy file from a remote machine using shutil

I need to copy a file from a remote machine. The code is something like this import shutil shutil.copyfile('//XXX.XXX.XXX.XXX/home/Shares Folder/file.txt','/home/file.txt') the location of the ...
0
votes
0answers
78 views

installing oracle for python [closed]

I am trying to connect to oracle 11.2.0.1 database from python 2.7 (virtualan) on centos. I followed the below post and installed cx_Oracle package. All went well. ...
0
votes
1answer
175 views

Weird Error in scrapy (CENTOS 6.2)

>>> import scrapy >>> from scrapy.selector import HtmlXPathSelector Traceback (most recent call last): File "<stdin>", line 1, in <module> File ...
1
vote
4answers
2k views

error: command 'gcc' failed with exit status when installing psycopg2

i need to install psycopg2 for openerp installation process, but i always found that error. i've already used pip and easy_install, my gcc is the latest version. Really need your help to solve my ...
0
votes
1answer
325 views

can't install psycopg2 on centos [closed]

I use pip and easy_install. I got this error message: Downloading/unpacking psycopg2 Running setup.py egg_info for package psycopg2 error: invalid Python installation: unable to open ...
1
vote
1answer
2k views

ImportError: No module named psycopg2

when installing process of openerp 6, i want to generate a config file with this command, cd /home/openerp/openerp-server/bin/ ./openerp-server.py -s --stop-after-init -c ...
1
vote
1answer
247 views

Error with Openerp 6.01 installation in CentOS

I am new in openerp. when installing process of openerp 6, i want to generate a config file with this command, cd /home/openerp/openerp-server/bin/ ./openerp-server.py -s --stop-after-init -c ...
3
votes
3answers
901 views

Serving a request from gunicorn

Trying to setup a server on Rackspace.com. Have done the following things: Installed Centos 6.3 Installed Python 2.7 Installed gunicorn using the "Quick Start" on their home page: gunicorn.org/ ...

1 2 3 4