snippetbashTip
vf — VirtualFish is a fish shell tool for managing Python virtual environments. More information: <https:
Viewed 0 times
shellcommandfishclivirtualfishtoolvffor
Problem
How to use the
vf command: VirtualFish is a fish shell tool for managing Python virtual environments. More information: <https://virtualfish.readthedocs.io/en/latest/>.Solution
vf — VirtualFish is a fish shell tool for managing Python virtual environments. More information: <https://virtualfish.readthedocs.io/en/latest/>.Create a virtual environment:
vf new {{virtualenv_name}}Create a virtual environment for a specific Python version:
vf new --python {{/usr/local/bin/python3.8}} {{virtualenv_name}}Activate and use the specified virtual environment:
vf activate {{virtualenv_name}}Connect the current virtualenv to the current directory, so that it is activated automatically as soon as you enter it (and deactivated as soon as you leave):
vf connectDeactivate the current virtual environment:
vf deactivateList all virtual environments:
vf lsRemove a virtual environment:
vf rm {{virtualenv_name}}Display help:
vf helpCode Snippets
Create a virtual environment
vf new {{virtualenv_name}}Create a virtual environment for a specific Python version
vf new --python {{/usr/local/bin/python3.8}} {{virtualenv_name}}Activate and use the specified virtual environment
vf activate {{virtualenv_name}}Connect the current virtualenv to the current directory, so that it is activated automatically as soon as you enter it (and deactivated as soon as you leave)
vf connectDeactivate the current virtual environment
vf deactivateContext
tldr-pages: common/vf
Revisions (0)
No revisions yet.