virtualenv
virtualenv copied to clipboard
Virtual Python Environment builder
Hi, virtualenv doesn't provide a mechanism for setting up environment variables and tearing them down again after deactivate. A use case would be allowing setting of `PYTHON_EGG_CACHE` to `$VIRTUAL_ENV/.python-egg` (related...
**Issue** Installing virtualenv with `pip install virtualenv` should install the package. I get error: ```txt ModuleNotFoundError: No module named 'distlib' ``` **Environment** Provide at least: - OS: Win7 64bit ```console...
**Issue** I'm trying to create a virtual environment: ```console > python -m virtualenv -p="C:/Program Files/Python30/python.exe" venv ``` The resulting error message has some formatting issues: ```console RuntimeError: failed to query...
At the moment interpreter lookup fails when ``distutils`` is not available, e.g. on some Ubuntu Python distributions. Error: ``` 113 failed to query /usr/bin/python3.6 with code 1 err: 'Traceback (most...
**Issue** Previously, the `--system-site-packages` flag (https://virtualenv.pypa.io/en/latest/cli_interface.html#section-creator) allowed a virtualenv to inherit Python packages from the parent Python installation. Now, however, the virtualenv is trying to reinstall packages that should be...
**What's the problem this feature will solve?** When creating a new virtualenv there may be some things like: - sitecustomize files - seeded packages that patch/repair builtins - other things...
**What's the problem this feature will solve?** Reproducibility ov virtualenv environment using specific virtualenv package (commonly used in devops deployment and other places). Previously a VERSIONED virtualenv sdist tar.gz file...
From https://github.com/pipxproject/pipx/issues/638 @uranusjr > I love virtualenv.discovery, but virtualenv is a big thing to pull in. I would reach for it every time if the functionality could be extracted into...
I use `virtualenv` to run 3rd party Django based web-server on Windows. In order to do that I have to run "start ...activate.bat" and then manually type the command `python...
**What's the problem this feature will solve?** the --help displayed for the "discovery" is this: > --discovery {builtin} interpreter discovery method (default: builtin) > -p py, --python py interpreter based...