Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why doesn't virtualenv on Windows associate .py/.pyw/.pyo/.pyc files with virtualenv's version of Python executables?

What is the reason virtualenv does not associate .py(w) files with virtualenv's version of Python executables? This seems like an ideal task for virtualenv on Windows taking into consideration that there's no mechanism like shebang on Windows.

like image 235
Piotr Dobrogost Avatar asked Feb 02 '11 20:02

Piotr Dobrogost


4 Answers

File type associations are handled in the Windows registry. The virtualenv activate script would have to modify the registry keys and the deactivate script would need to restore the previous value (or risk breaking the associations).

What happens if you activate a virtualenv, open a second instance of cmd.exe, and activate a different virtualenv? Unless you deactivate them in the right order, the stored values for the registry keys would be lost.

I'm not a virtualenv developer, I'd say that the potential problems far outweigh the slight benefit.

like image 193
Velociraptors Avatar answered Nov 08 '22 23:11

Velociraptors


virtualenvwrapper-win does associate Python files with currently active virtualenv:

Note that the batch script pyassoc requires an elevated command prompt or that UAC is disabled. This script associates .py files with python.bat, a simple batch file that calls the right python.exe based on whether you have an active virtualenv. This allows you to call python scripts from the command line and have the right python interpreter invoked. Take a look at the source -- it's incredibly simple but the best way I've found to handle conditional association of a file extension.

python.bat looks like this

@echo off

if defined PYTHONHOME (
    goto MAIN
)
FOR /F "tokens=*" %%i in ('whereis.bat python.exe') do set PYTHONHOME=%%~dpi
SET PYTHONHOME=%PYTHONHOME:~0,-1%

:MAIN
SETLOCAL EnableDelayedExpansion
if defined VIRTUAL_ENV (
    set PY="%VIRTUAL_ENV%\Scripts\python.exe"
) else (
    set PY="%PYTHONHOME%\python.exe"
)
ENDLOCAL & %PY% %*

:END

UPDATE

Now it's possible – see How to associate Python scripts with active virtualenv?

like image 35
Piotr Dobrogost Avatar answered Nov 08 '22 22:11

Piotr Dobrogost


All of my Python development at present is on Linux, but I'm looking at working on Windows, which is how I found this question. My answer would be an operational one:

Instead of typing <scriptName>.py at a prompt, I always type python <scriptName>.py. If you adopt this habit, won't virtualenv execute the proper Python for you?

like image 45
gomad Avatar answered Nov 08 '22 21:11

gomad


The Python launcher supports custom commands. Create a py.ini file in $env:LOCALAPPDATA with a section like this:

[commands]
venvpython=C:\Path\To\Virtualenv\Scripts\python.exe

Now, you can use venvpython in the #! line of your script:

#!venvpython
import sys
print(sys.executable)
like image 1
Paul Moore Avatar answered Nov 08 '22 22:11

Paul Moore