From 4f39ac4623022fa4aae8fec2ad52fc8e06571602 Mon Sep 17 00:00:00 2001 From: Marco Buttu Date: Sat, 5 Mar 2016 08:50:10 +0100 Subject: [PATCH] "pyenv virtualenvs" lists two entries for each virtualenv --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 85c05bf..eefc7a1 100644 --- a/README.md +++ b/README.md @@ -111,14 +111,18 @@ $ pyenv virtualenv venv34 `pyenv virtualenvs` shows you the list of existing virtualenvs and `conda` environments. ```sh -$ pyenv shell venv27 +$ pyenv shell venv34 $ pyenv virtualenvs miniconda3-3.9.1 (created from /home/yyuu/.pyenv/versions/miniconda3-3.9.1) miniconda3-3.9.1/envs/myenv (created from /home/yyuu/.pyenv/versions/miniconda3-3.9.1) -* venv27 (created from /home/yyuu/.pyenv/versions/2.7.10) - venv34 (created from /home/yyuu/.pyenv/versions/3.4.3) + 2.7.10/envs/my-virtual-env-2.7.10 (created from /home/yyuu/.pyenv/versions/2.7.10) + 3.4.3/envs/venv34 (created from /home/yyuu/.pyenv/versions/3.4.3) + my-virtual-env-2.7.10 (created from /home/yyuu/.pyenv/versions/2.7.10) +* venv34 (created from /home/yyuu/.pyenv/versions/3.4.3) ``` +There are two entries for each virtualenv, and the shorter one is just a symlink. + ### Activate virtualenv