This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Windows launcher ignores active virtual environment
Type: behavior Stage: needs patch
Components: Interpreter Core, Windows Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: brian.curtin, bryangeneolson, piotr.dobrogost, tim.golden, vinay.sajip
Priority: normal Keywords:

Created on 2013-01-21 23:57 by bryangeneolson, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (6)
msg180362 - (view) Author: Bryan G. Olson (bryangeneolson) * Date: 2013-01-21 23:57
Python 3.3 includes PEP 397, a Python launcher for Windows, and PEP 405, virtual environment support in core. Unfortunately the Windows launcher does not respect virtual environments. Even with with a virtual environment activated and the current directory at the virtual environment's root, the Windows launcher will start python with the system environment, not the active virtual environment.


To demo:

Install python 3.3 for windows.

Create a virtual environment:

  C:\>c:\Python33\Tools\Scripts\pyvenv.py c:\virtpy

Activate the virtual environment:

  C:\>virtpy\Scripts\activate.bat
  (virtpy) C:\>

Optionally cd to the virtual environment:

  (virtpy) C:\>cd virtpy
  (virtpy) C:\virtpy>

Start Python 3 with the new windows launcher:

  (virtpy) C:\virtpy>py -3
  Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:48) [MSC v.1600 32 bit (Intel)] on win32
  Type "help", "copyright", "credits" or "license" for more information.
  >>>

Check sys.path

  >>> import sys
  >>>
  >>> sys.path
  ['', 'C:\\Windows\\system32\\python33.zip', 'C:\\bin\\Python33\\DLLs', 'C:\\bin\\Python33\\lib', 'C:\\bin\\Python33', 'C:\\bin\\Python33\\lib\\site-packages']
  >>>


The worst effect I've found is that installation of a package with windows launcher, "py -3 setup.py install", will ignore the active virtual environment and will change the system Python environment. That's bad because users frequently employ virtual environments to isolate changes that could damage a system configuration.
msg180665 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2013-01-26 12:47
When using an activated virtual environment, there is no need to use "py" - just use "python". Primarily, the launcher looks for a shebang line in a script to determine which interpreter to use for the script. If no shebang line can be found, it will launch "the default" Python, which is currently the most recent Python 2.x found in the registry. When invoked via py -3 (or with suitable settings in the configuration), it will use the most recent Python 3.x found in the registry. Since venv interpreters are not in the registry, they will never be invoked as the default Python. However, any scripts installed into venvs will have the correct shebang lines, so they will launch with the venv's interpreter.

I don't believe this is a bug, as the system is IMO working as designed and as per PEP 397. If the launcher is asked to launch a script which contains a shebang, while a venv is activated, it will run with the interpreter indicated by the shebang, rather than the venv's interpreter.

Perhaps one could consider an enhancement whereby if no shebang is found, a different approach is used to find the interpreter - e.g. looking for "python" on the path before looking in the registry to locate an interpreter. The question arises as to whether this should be tied to a specific condition such as the presence of an environment key PYLAUNCHER_USEPATH. (This is of course orthogonal to whether or not a venv is activated, but would have the desired effect when a venv is activated, without needing to tie the launcher to a virtualenv-specific environment value such as VIRTUAL_ENV.)
msg186960 - (view) Author: Piotr Dobrogost (piotr.dobrogost) Date: 2013-04-14 22:10
Issue titled "Python Launcher and virtualenv?" at https://bitbucket.org/vinay.sajip/pylauncher/issue/15/ is related.
msg191062 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2013-06-13 06:41
Recent changes to the launcher mean that for a shebang line of "#!/usr/bin/env python", the path is searched for a Python executable. This will include the Python executable in an activated venv, so I am closing this issue. The change is already available for testing in the standalone launcher at

https://bitbucket.org/pypa/pylauncher/downloads/

and should be incorporated into the launcher released with Python 3.4.
msg191065 - (view) Author: Piotr Dobrogost (piotr.dobrogost) Date: 2013-06-13 07:54
@Vinay
Is there any discussion which lead to this change?
msg191068 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2013-06-13 08:32
> Is there any discussion which lead to this change?

http://mail.python.org/pipermail/python-dev/2013-May/125939.html
History
Date User Action Args
2022-04-11 14:57:40adminsetgithub: 61212
2013-06-13 08:32:39vinay.sajipsetmessages: + msg191068
2013-06-13 07:54:01piotr.dobrogostsetmessages: + msg191065
2013-06-13 06:41:39vinay.sajipsetstatus: open -> closed
resolution: fixed
2013-06-13 06:41:26vinay.sajipsetmessages: + msg191062
2013-04-14 22:10:54piotr.dobrogostsetnosy: + piotr.dobrogost
messages: + msg186960
2013-01-26 12:47:08vinay.sajipsetmessages: + msg180665
2013-01-26 00:05:16eric.araujosetnosy: + vinay.sajip, tim.golden, brian.curtin
stage: needs patch

components: + Interpreter Core, - Installation
versions: + Python 3.4
2013-01-21 23:57:37bryangeneolsoncreate