Tagged Questions

43
votes
4answers
14k views

How to install pip on windows?

The python software pip is a replacement for *easy_install*. But I will install pip using easy_install on Windows. Is there a better way? Edit: This also seems to work: Download the last easy ...
4
votes
4answers
731 views

windows + virtualenv + pip + numpy (problems when installing numpy)

On windows, I normally just use the binary installer, but I would like to install numpy only in a virtualenv this time, so I created a virtual env: virtualenv --no-site-packages --distribute ...
3
votes
5answers
5k views

mysql-python install problem using virtualenv, windows, pip

I'm trying to install mysql-python in a virtualenv using pip on windows. At first, I was getting the same error reported here, but the answer there worked for me too. Now I'm getting this following ...
2
votes
1answer
116 views

Installing turbogears 2.1 on Windows 7 x86 error “The system cannot find the file specified”

I created enviroment in C:\Projects2010\Python\Environments: C:\Python27\Scripts\virtualenv.exe myenv Then ran activate.bat: C:\Projects2010\Python\Environments\myenv\Scripts\activate.bat Then ...
1
vote
1answer
117 views

How do I distribute precompiled extension modules for Windows on pypi for multiple versions of Python?

I would like to distribute a precompiled C extension module for Python 2.6 and Python 2.7 for 32- and 64-bit versions of Python. How should I build and distribute that on pypi? Should I just use ...
0
votes
0answers
88 views

Using virtualenv from within PythonWin?

I'm trying to use the virtualenv and pip to set up a clean development environment while still use PythonWin to edit and run the code. Since at startup the PythonWin IDE gives me a REPL to Python ...
0
votes
0answers
265 views

Installing with Pip, Jython on windows

I have been trying to install a few programs on my jython2.5.2 install for a while, but I have been unable to get pip to work. Unfortunately, my networking is locked down, so pip cannot automatically ...
0
votes
1answer
141 views

How to wait for a child that respawns itself with os.execv() on win32?

I have some code that uses pip to bootstrap a Python envionment for out build process: this is a lovely way of ensuring we get proper isolation of the build requirements from the rest of the host ...