virtualenv icon indicating copy to clipboard operation
virtualenv copied to clipboard

An option to show details of the currently active environment

Open greatvovan opened this issue 5 years ago • 0 comments

What's the problem this feature will solve? As a developer who works with multiple projects and has a few Terminal windows open, I need to know (at least):

  • the directory of the current virtual environment,
  • the base Python from which it was created.

Describe the solution you'd like A CLI option, e.g. --show or --current

Alternative Solutions A rough equivalent of above is:

echo $VIRTUAL_ENV
cat $VIRTUAL_ENV/pyvenv.cfg 

Additional context Having such an option is time-saving as one does not need to memorize file and variable names.

greatvovan avatar Dec 08 '20 23:12 greatvovan