virtualenv is a tool that creates sandboxed Python environments.

learn more… | top users | synonyms

0
votes
0answers
10 views

Giving access permission to a specific user in webfaction

We have plan to host our application at a webfaction server that is already running. Now we want to give a new user permission to access a new directory/app. I already searched for the command on how ...
0
votes
1answer
10 views

Installing Anaconda into a Virtual Environment

I've currently got a working installation of the Enthought Python Distribution on my machine that I don't want to necessarily disrupt, but I'd like to look at moving over to Anaconda from Continuum. ...
0
votes
0answers
10 views

Executing collectstatic on vbox shared folder gives Read-only error

I am trying to work on a django project using virtualbox. The project directory is a symlink pointing a shared folder that resides on the host machine. The django project is created without permission ...
0
votes
1answer
44 views

Django 1.5, Apache, wsgi.py - ImportError: Could not import settings

I have seen others post on this on StackOverflow (mainly for Django 1.4), but none of those provided a successful solution for me. I am unable to setup Django 1.5.1 correctly with Apache. I receive ...
1
vote
3answers
29 views

How do I get into my virtualenv quicker? Custom commands?

everytime I want to do something with terminal I have to type this sequence in the terminal (Im on mac osx lion terminal): >Public/projects/installs # location of my venv >. venv/bin/activate ...
0
votes
2answers
43 views

virtualenv and Maya

I'm trying to set up virtualenv to point at Maya 2013's executable so I can run unit tests inside it from the shell. Maya uses a custom python 2.6 executable located at /usr/autodesk/maya/bin/mayapy. ...
1
vote
1answer
25 views

Python Traceback Error everytime Terminal is opened

Every time I open terminal, at the very top I see this error: Traceback (most recent call last): File "<string>", line 1, in <module> ImportError: No module named ...
0
votes
1answer
33 views

django under virtualenv causing importerror

In ubuntu lucid ,I installed python2.7.5 and set up a virtualenv .In the terminal I typed workon envpy275 and using pip installed these sw from requirements file python==2.7.5 Django==1.4.3 ...
0
votes
1answer
13 views

ImportError with VirtualEnv

I'm trying to use VirtualEnv for a Flask app that I'm creating since everyone has recommended me to do so. After creating my virtual environment, I installed the libraries that I needed using pip ...
0
votes
1answer
25 views

Smoothly converting a static website to Django

I currently have a simple apache /var/www setup. I have a bunch of static HTML files in a directory (let's call it /var/www/mydir), which show up on http://mysite.com/mydir/filename.htm. Now, I want ...
1
vote
0answers
29 views

cannot start django from virtualenv but

My first trial with virtualenv and django. From a small virtual environment I install a few python packages (including Django) with pip. I make sure that pip contains all the needed files but I cannot ...
0
votes
2answers
37 views

Installing a precomplied python package anywhere else than the python path [closed]

I was trying to install psutil (on which my own script depends) on a computer that does not have Visual Studio 2008, so I get the "Unable to find vcvarsall.bat" error. I don't have mingw32 either. I ...
0
votes
2answers
40 views

Sharing of various Django setup guides [closed]

This may be a little clean and green, however when I try to explain my setup to a rubber duck, many times I awake to find myself in a pile of my own hair and the duck still there, staring at me ...
1
vote
2answers
51 views

Installing pygit2/libgit2 in Python virtualenv on a Mac

I think I'm about to lose my mind. I'm trying to simply install pygit2 in my python virtualenv on my macbook air so I can get to work. However this is not budging and I have been trying to set it up ...
0
votes
1answer
39 views

Virtualenv is attempting to install in system directory

I ran into a problem earlier, trying to install gevent in my virtualenv. I tried a few different things, including a few export commands, installing XCode command line tools, installing the GCC ...
0
votes
0answers
27 views

Python Virtualenv importing utils

Im running Python 2.7.4 on ubuntu 13.04 and try to set up a virtualenv. I had to install some modules with pip to run the code but Im not able to install utils which is used for parse_date. This is ...
0
votes
0answers
17 views

Difference between installing and using virtualenv “globally from source” and using it “locally from source”

https://pypi.python.org/pypi/virtualenv says To install globally from source: $ curl -O https://pypi.python.org/packages/source/v/virtualenv/virtualenv-X.X.tar.gz $ tar xvfz virtualenv-X.X.tar.gz $ ...
0
votes
2answers
44 views

“'module' object has no attribute 'HTTPSConnection'” when try to use pip in virtualenv

I get this error when I try to use pip in virtualenv.It works nice when I deactivate environment. What could be wrong? I use python 2.7 in CentOS.
0
votes
0answers
18 views

Django_extensions failing to work with iPython notebook

I am using Django 1.4.5 and have just installed django-extensions, in a virtualenv. I am using Python 2.7.1. When I type: ./manage.py shell_plus --notebook I get the error: Traceback (most recent ...
0
votes
1answer
34 views

cannot access webserver resources using virtualenv and webapp2

I wanted to create a simple app using webapp2. Because I have Google App Engine installed, and I want to use it outside of GAE, I followed the instructions on this page: ...
0
votes
2answers
34 views

python virtualenv module not being imported

I have installed markdown using pip install markdown in a virutalenv project, running pip freeze shows me its installed. but I get the following error when trying to use it import markdown ...
1
vote
1answer
45 views

Import own C module in a Python virtualenv (Solved)

I try to import C code into a Python script working in a virtualenv. I manage to link my C code with Python installing a setup.py into python. But when I am in my virtualenv, I can't find my module, ...
3
votes
1answer
69 views

Is VirtualEnv for Python essentially the same as RVM for Ruby

Having used VirtualEnv before, I'm wondering whether RVM is essentially the exact same action, of creating unique environments where updating dependencies won't break various projects, or if it ...
0
votes
1answer
33 views

pip: Could not find an activated virtualenv (required)

I am trying to instal virtualenv and/or virtualenvwrapper on a mac osx 10.8.3 I have been fighting with python for the last two days. Finally I was able to install python 2.7.4 using brew. Before I ...
0
votes
0answers
53 views

Configure uWSGI to use virtualenv

I've installed uWSGI and nginx through apt-get and placed my uwsgi-conf.ini in /etc/uwsgi/apps-available and symlinked it to apps-enabled, and followed the same procedure for the nginx configuration. ...
0
votes
1answer
26 views

Fabric deployment with virtualenv - which user?

I'm trying to deploy an "app" written on top off web.py with fabric on a VPS running Arch Linux. But I'm confused about best pratices regarding Fabric and virtualenv: which user should I use to ...
1
vote
1answer
52 views

Installing MySQL-python for Django

I've just learned how to use virtualenv and I installed Django 1.4.5. I'm assuming that the virtualenv created a clean slate for me to work on so with the Django 1.4.5 installed, I copied all my ...
1
vote
1answer
39 views

Using virtualenv

I've been reading up on using virtualenv for django projects and i just wanted a bit of confirmation. After installing virtualenv via sudo pip install virtualenv. You type in the command virtualenv ...
2
votes
1answer
33 views

virtualenv and subprocess.call() in mixed Python 2.7/3.3 environment

For some functional tests, I invoke a couple of utilities directly from the project directory, using Python's subprocess.call (or check_call which invokes the latter). This works well when the ...
0
votes
0answers
68 views

Trying to run Django app on Gunicorn locally using Foreman

I'm following Getting Started with Django on Heroku tutorial When I'm trying to run Django app on the Gunicorn using Foreman, i get next error traceback: 09:23:33 web.1 | started with pid 7012 ...
0
votes
0answers
40 views

Mac python install advice: avoiding virtualenv sys.path issues

As a newb-intermediate python user, I've decided to set up python "the right way" by using virtualenv, and like others I've encountered the sys.path error-related problems exemplified in this post ...
0
votes
1answer
27 views

Managing custom python module dependencies through virtualenv

I am using some custom modules, not available on PyPI. Is it possible to manage the dependency through virtualenv?
1
vote
0answers
17 views

Moved my project dir, where did my dependencies go?

I moved my project directory to a new location. Now, when I try and run my application locally, I receive an "ImportError: No module named flask" Here is my work flow: $ mv my_project/ ~/new_dir/ $ ...
1
vote
1answer
60 views

Windows opens .py file with C:\Python27\Python.exe despite rebinding Python.File

I followed Python's official FAQ to make .py file executable, i.e. adding .py to $PATHEXT and bind Python.File to "C:\Python27\Python.exe" "%1" %*. The result was fine: >assoc .py .py=Python.File ...
1
vote
0answers
35 views

Is it possible to create a python vitualenv using a standalone jython jar as EXE?

I know jython can be used as the python interpreter for a virtualenv. Simple as: virtualenv -p /usr/local/bin/jython jython-env --no-site-packages Let's say I didn't want to install jython at all ...
1
vote
1answer
227 views

Unable to install boto in a virtualenv

I was able to install boto==2.9.0 inside global site-packages, but when I try to install the same within a virtualenv, it fails with the following error. Running setup.py egg_info for package boto ...
2
votes
1answer
93 views

Manage Environment Variables

I've previously used Python tools like virtualenv and virtualenvwrapper in Python projects, but now I'm working on a project in Go so I'd like a general tool to switch environment variables when I do ...
6
votes
2answers
234 views

virtualenv doesn't create PYTHONPATH / pip installed packages don't work

I'm using virtualenv 1.9.1 on cygwin under win 7. Each virtualenv is created without any options (other than the directory name, obviously). There are no fancy customisations. All virtualenvs are ...
1
vote
1answer
89 views

uWSGI Fails with No module named encoding Error

I am trying to setup uWSGI with Pyramid, but I am getting this error, when attempting uwsgi --ini-paste development.ini Python version: 3.2.3 Error message: uwsgi socket 0 bound to UNIX address ...
2
votes
1answer
207 views

no module name datetime after ubuntu 13.04 upgrade

Just did an upgrade from ubuntu 12.10 to 13.04 and getting this when running django site in virtualenv (virtualenv)sysadmin@ubuntu:~/webapps/devsite/djangosite$ ./manage.py runserver Traceback (most ...
0
votes
1answer
39 views

how to create a python virtualenv environment without prompt prefix?

I want to have a "default" virtual environment, and for such I don't want to have a prompt prefix. The following option allows one to customize the prompt prefix for for a given environment: ...
0
votes
1answer
38 views

Virtualenv with different python version doesn't work on windows

i have Python 2.6 as my default python on Windows 7, and i'm trying to get a virtual env with Python 2.7 I have python 2.6 in C:\Python26, and python 2.7 in C:\Python27 When i try to use virtualenv ...
0
votes
0answers
22 views

Uninstall setuptools from a virtualenv

Inside a virtualenv, I have pip, distribute and setuptools installed, and using yolk -l give this output for the relevant packages: Python - 2.7.3 - active development ...
1
vote
0answers
12 views

How would one pip freeze/list all virtualenvs?

I have multiple virtualenvs on a single server and I would like to perform 2 operations on all of the virtualenvs. pip freeze pip list --outdated Is there an automated solution/command that will ...
0
votes
1answer
20 views

How to migrate virtualenv

I have a relatively big project that has many dependencies, and I would like to distribute this project around, but installing these dependencies where a bit of a pain, and takes a very long time (pip ...
0
votes
1answer
58 views

Wrong python binary virtualenv

I recently installed virtualenv and virtualenvwrapper on my mac to work on a Django Project. My problem is that when I am in my virtualenv and I enter python manage.py runserver, for some reason the ...
-1
votes
0answers
23 views

virtualenv cannot create new env on my macbook due to easy_install issue [closed]

I already posted this as an issue on github issue link here It's been six days and I got no clue how to fix this or how this issue occurred. would u kind enough to take a look on this?
1
vote
1answer
52 views

(Another) ImportError with Flask under mod_wsgi

Sorry if this seems like a repeat of several previous questions, but none of those have helped me so far :-/ I have written a Flask app that I am attempting to deploy under mod_wsgi and apache2. I ...
0
votes
0answers
38 views

supervisord can't find command in virtualenv folder

My supervisord.conf contains a bunch of programs like so: [program:gtaskqueue_puller_1] directory=/root/scripts/gtaskqueue_puller command=venv/bin/gtaskqueue_puller "foo" autostart=true ...
0
votes
0answers
102 views

Virtualenv in Mac OSX -bash: command not found issue

I'm having a really hard time trying to use virtualenv on Mac OSX Mountain Lion. I installed XCode, python2.7 with Homebrew and virtualenv + virtualenvwrapper using sudo PIP. I've added ...

1 2 3 4 5 21