I’m on Windows 8, using Anaconda 1.7.5 64bit. I created a new Anaconda environment with conda create -p ./test python=2.7 pip from C:\Pr\TEMP\venv\. This worked well (there is a...
I created a virtualenv around my project, but when I try to activate it I cannot. It might just be syntax or folder location, but I am stumped right...
What is the conda version of this? pip install -r requirements.txt --target ./lib I’ve found these commands: while read requirement; do conda install --yes $requirement; done < requirements.txt But...
I recently learned how to use virtualenv and virtualenvwrapper in my workflow but I’ve seen pyenv mentioned in a few guides but I can’t seem to get an understanding...
I am a ruby programmer trying to learn python. I am pretty familiar with pyenv since it is like a copy and paste from rbenv. Pyenv helps allow to...
I’m looking for a way to make a virtualenv which will contain just some libraries (which I chose) of the base python installation. To be more concrete, I’m trying...
Short Question What is the proper way to install pip, virtualenv, and distribute? Background In my answer to SO question 4314376, I recommended using ez_setup so that you could...
I recently installed a bunch of dotfiles on my Mac along with some other applications (I changed to iTerm instead of Terminal, and Sublime as my default text editor)...
This is a much discussed issue for OSX 10.6 users, but I haven’t been able to find a solution that works. Here’s my setup: Python 2.6.1 64bit Django 1.2.1...
Is there a way to upgrade the version of python used in a virtualenv (e.g. if a bugfix release comes out)? I could pip freeze --local > requirements.txt, then...