Tagged Questions
0
votes
1answer
48 views
Can't install python because of zypper conflict
I have a virtual machine I just set up. I'm running a completely fresh install of OpenSUSE (with online updates from yast). At the terminal I tried to run python:
$ python
bash: python: command not ...
1
vote
2answers
56 views
how to install ast python package
I'm using django constance in my project. This app used a python package ast. When I try to install that package using command pip-2.7 install ast, it results as "Could not find any downloads that ...
1
vote
1answer
48 views
Virtual Python installation not allowing ez_setup?
I don't have root on my system, so I'm trying to create a virtual Python installation. I ran virtual-python.py, and it told me to run ez_setup.py. I found it online and ran it with the command ...
2
votes
2answers
2k views
How to properly install Python packages?
I run a Slackware system and I'm trying to run some Python code, but getting a lot of errors such as this one below:
>>> import urllib2
Traceback (most recent call last):
File ...
2
votes
1answer
227 views
Installing trac - “Trac requires Python 2.5 or later”
I am having a little trouble getting trac 1.0 installed via easy_install:
[box]# easy_install Trac==1.0
Downloading ...
3
votes
1answer
458 views
Can I upgrade to a new version of Python on an old version of Ubuntu?
I have Ubuntu 8.04.3 LTS and ran this:
$ sudo apt-get install python2.7
I got this:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find ...
0
votes
1answer
585 views
zlib support for PIL won't work
I'm trying to install PIL as per its instruction on debian but can't figure how to fix this bit:
I get --- ZLIB (PNG/ZIP) support available on build_ext
and * ZLIB (PNG/ZIP) support not installed on ...
11
votes
5answers
3k views
Using different versions of Python
Background:
Since I develop python programs that must run on different python versions, I have installed different versions of python on my computer.
I am using FC 13 so it came with python 2.6 ...