virtualenv icon indicating copy to clipboard operation
virtualenv copied to clipboard

Virtual Python Environment builder

Results 128 virtualenv issues
Sort by recently updated
recently updated
newest added

**Issue** I am creating a virtualenv with a given prompt, and the prompt I provide gets surrounded by parenthesis. After activating the virtualenv, I would like to have the given...

bug
help-wanted

**Issue** I created a Python virtual environment(PyVenv) by virtualenv , but after I activated it, the path of python&pip kept original. When I typed in cmd: `where python` it showed:...

bug
help-wanted

**Issue** The documentation rewrite of commit 7a5d03fe15 (just before tag/release v20.0.0b2) removed any reference to the `VIRTUAL_ENV_DISABLE_PROMPT` environment variable from the documentation. If this was just an oversight, the documentation...

help-wanted
documentation

``` $ virtualenv --version virtualenv 20.14.1 from /home/wglenn/.local/lib/python3.11/site-packages/virtualenv/__init__.py $ /usr/bin/python2.7 -V Python 2.7.5 $ /usr/local/bin/python2.7 -V Python 2.7.18 ``` Creating the virtualenv and pointing at the 2.7.18 exe doesn't work:...

bug

**What's the problem this feature will solve?** drop python2 support **Describe the solution you'd like** Are there any plans to remove support for python2? **Alternative Solutions** **Additional context**

enhancement

**Issue** When using the `Activate.ps1` script, the name in parenthesis becomes ` (activate.ps1)`, as opposed to the name of the virtual environment when using the bat file. **Environment** Provide at...

bug
help-wanted

setuptools added support for a `_distutils_system_mod` override file to distutils. https://github.com/pypa/setuptools/pull/2896 This allows packaging systems to override particular distutils defaults with their preferred solution. This is how pkgsrc uses the...

enhancement
help-wanted

**Issue** While having a private message exchange with @gaborbernat earlier today, I hit a weird behavior when attempting to use `virtualenv.pyz`. We were talking about using it on Fedora and...

bug
help-wanted

**Issue** Virtualenv folders are not added to sys.path in `activate.bat` (and `activate.ps1`): ```console C:\Users\Benni>.venv\Scripts\activate.bat (.venv) C:\Users\Benni>python3 Python 3.10.2 (tags/v3.10.2:a58ebcc, Jan 17 2022, 14:12:15) [MSC v.1929 64 bit (AMD64)] on win32...

bug

### Current state Currently each python provided by `--python` cli flag is appended to the list . It's meant to provide [fallback functionality for interpreter discovery](https://github.com/pypa/virtualenv/pull/1995/). The side effect of...

help-wanted