pyenv-virtualenv icon indicating copy to clipboard operation
pyenv-virtualenv copied to clipboard

a pyenv plugin to manage virtualenv (a.k.a. python-virtualenv)

Results 123 pyenv-virtualenv issues
Sort by recently updated
recently updated
newest added

I'd like to be able to set environment variables specific to each virtualenv created by pyenv when I enter a directory. I found Issue #55 that seems to mention this...

hi yyuu, I encountered a wired problem, I googled a lot relevant pages, but still got no solution. can you give me some advice, appreciate a lot for your effort。...

Should pyenv-sh-shell be used maybe here? https://github.com/pyenv/pyenv-virtualenv/blob/32718e80b9fb5f7e2ac51be9b2d5a670744df762/bin/pyenv-sh-activate#L141-L160 I've noticed this when looking into https://github.com/pyenv/pyenv/pull/1185 again - if `pyenv shell` was used here, it would make this easier I assume. It...

There is nothing written in the README about how to install a personal script in a virtualenv. For example I have a script which begins like this: ```python #!/usr/bin/env python...

AFAICS pyenv itself takes care of everything already, doesn't it? https://github.com/pyenv/pyenv-virtualenv/blob/master/etc/pyenv.d/rehash/envs.bash A bit related: https://github.com/pyenv/pyenv-virtualenv/issues/211

Thanks for the awesome tools. Just reporting a minor issue. `pyenv virtualenvs` does not list user-created virtual environments, only the installed python versions: ``` (miniconda3-4.3.30) [user@host]$ pyenv virtualenvs * miniconda3-4.3.30...

Right now pyenv allows installing miniconda and miniconda3, which assumes latest Python 2 (2.7.13) and Python 3 (3.6.2 at the time of writing). However, it is not clear what is...

From `pyenv` README: > You can also specify multiple versions in a .python-version file, separated by newlines or any whitespace. Is something like this possible for `pyenv-virtualenv`? An example use...

In this line: https://github.com/pyenv/pyenv-virtualenv/blob/75e84742db6e58a52765c4f7b98bd5331a5e0671/bin/pyenv-virtualenv-init#L143 One should also check whether PROMPT_COMMAND is empty or not. If it is empty, just set it `PROMPT_COMMAND="_pyenv_virtualenv_hook` avoiding to add a dangling semicolon. In my...

I'm using Google Cloud Platform's `gcloud` tool. It uses the `python2` on my PATH. When I set `pyenv global 2.7.12`, `gcloud` works. When I make an old-fashioned virtualenv and activate...