pyenv-virtualenv
pyenv-virtualenv copied to clipboard
a pyenv plugin to manage virtualenv (a.k.a. python-virtualenv)
Hello all, I am trying the autoenable of venv part. I have the `eval "$(pyenv virtualenv-init -)"` set in my shell rc file and also have the venv in the...
virtualenv includes seed packages (pip, setuptools, wheel) so creating virtualenvs with those already included is much faster than using venv and then installing them with pip. There should at least...
I have had a similar experience to many others (https://github.com/pyenv/pyenv-virtualenv/issues/411 https://github.com/pyenv/pyenv-virtualenv/issues/346 https://github.com/pyenv/pyenv-virtualenv/issues/265 https://github.com/pyenv/pyenv-virtualenv/issues/259) with pyenv-virtualenv being extremely slow - adding ~200ms every time I press enter - adding ~300ms when...
Activating a virtual environment from inside a python script running in another virtual environment fails. For example I have a 'script runner' application which has a set of scripts and...
Further to encountering the same symptoms reported in [this pyenv issue](https://github.com/pyenv/pyenv/issues/2026), I added "--path" to the "eval pyenv init" invocation in my .bashrc. While pyenv now uses the correct python...
Hey, according to current output: ``` pyenv-virtualenv: prompt changing will be removed from future release. configure `export PYENV_VIRTUALENV_DISABLE_PROMPT=1' to simulate the behavior. ``` Can I ask how you came to...
Hi, Not really an issue, but an idea concerning the long-standing issue of prompt updating (#268, #346, #385, maybe others...) I guess that one of the incentives for deprecating this...
I have been using (Homebrew) pyenv and pyenv-virtualenv for a long time, and my usual procedure for creating a virtual environment (with 3.7.4, for example) is: ``` pyenv install 3.7.4...
Shouldn't `pyenv activate` work the same way as `source /Users/me/.pyenv/versions/3.6.8/envs/app-x-py3.6.8/bin/activate`? ## Create virtualenv ``` ➜ app-x git:(master) % pyenv virtualenv 3.6.8 app-x-py3.6.8 Looking in links: /var/folders/0s/d48cqfy96vl2gqmy_gjvcknm0000gn/T/tmpfxy7zwlo Requirement already satisfied: setuptools...
## create the env ``` ➜ PycharmProjects conda create --name zw01 Collecting package metadata (current_repodata.json): done Solving environment: done ## Package Plan ## environment location: /Users/zhaowei/.pyenv/versions/anaconda3-2019.10/envs/zw01 Proceed ([y]/n)? y Preparing...