0
votes
0answers
21 views
Windows with Plesk Panel installs ActiveState Python 2.5.0 - any thoughts?
I expect to run Pylons on a Windows Server 2003 and IIS 6 on a Virtual Private Server (VPS). Most work with the VPS is done through the Plesk 8.6 panel. The Plesk panel has a lot o …
2
votes
2answers
269 views
How to leave a python virtualenv?
I'm using virtualenv and the virtualenvwrapper. I can switch between virtualenv's just fine using the workon command.
me@mymachine:~$ workon env1
(env1)me@mymachine:~$ workon env …
6
votes
3answers
268 views
Don’t touch my shebang!
One thing I hate about distutils (I guess he is the evil who does this) is that it changes the shebang line. In other words, the more rational and environment-vars decided scriptur …
0
votes
1answer
34 views
setting up virtualenv for django development on windows,
Hi,
Setting up a virtualenv for the first time, when i try to install MySQL-python using
pip -E <<some virtual env>> install MySQL-python
i get
File "setup_windows …
0
votes
4answers
63 views
Activate virtualenv via os.system()
Hey all,
I'm writing a Python-based shell script to boilerplate a Django app with virtualenv, pip, and fabric. Should be straightforward enough, but it appears that I'm not able t …
0
votes
1answer
33 views
gnome-terminal, virtualenv and a bunch of services
Hi folks
I'm working on a server-side project that consists of several services. Each service is run in interactive (i.e. non-daemon) mode, this is handy while active development. …
2
votes
2answers
70 views
Use different Python version with virtualenv
I have a Debian system currently running with python 2.5.4. I got virtualenv properly installed, everything is working fine. Is there a possibility that I can use a virtualenv with …
3
votes
3answers
442 views
Virtualenv on Ubuntu with no site-packages
I've been using virtualenv lately while developing in python. I like the idea of a segregated development environment using the --no-site-packages option, but doing this while deve …
0
votes
4answers
106 views
virtualenv confusion
So I open a terminal, cd to my desktop, and run:
virtualenv test_env
I then create the following file in my normal environment:
/home/jesse/.local/lib/python2.6/site-packages/fo …
0
votes
2answers
114 views
virtualenv, mysql-python, pip: anyone know how?
I'm trying to install the mysql bindings in a virtualenv. I'd prefer to use pip or easy_install. pip gives me the following error:
File "setup_posix.py", line 24, in mysql_con …
0
votes
1answer
70 views
Buildout and Virtualenv
I am messing around with the combination of buildout and virtualenv to setup an isolated development environment in python that allows to do reproducible builds.
There is a recipe …
0
votes
1answer
66 views
Install custom modules in a python virtual enviroment
I am doing some pylons work in a virtual python enviorment, I want to use MySQL with SQLalchemy but I can't install the MySQLdb module on my virtual enviorment, I can't use easyins …
1
vote
3answers
356 views
Ubuntu + virtualenv = a mess? virtualenv hates dist-packages, wants site-packages
Can someone please explain to me what is going on with python in ubuntu 9.04?
I'm trying to spin up virtualenv, and the --no-site-packages flag seems to do nothing with ubuntu. I …
1
vote
3answers
134 views
What do I need to know/learn for automated python deployment?
I'm starting a new webapp project in Python to get into the Agile mind-set and I'd like to do things "properly" with regards to deployment. However, I'm finding the whole virtualen …
2
votes
2answers
117 views
virtualenv --no-site-packages and pip still finding global packages?
I was under the impression that virtualenv --no-site-packages would create a completely separate and isolated Python environment, but it doesn't seem to.
For example, I have pytho …
