vf: add page (#11219)

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
pull/23/head
Abhishek M J 2023-10-25 00:52:55 +05:30 committed by GitHub
parent a98fbd6f8f
commit 3463e106dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 36 additions and 0 deletions

36
pages/common/vf.md Normal file
View File

@ -0,0 +1,36 @@
# 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 connect`
- Deactivate the current virtual environment:
`vf deactivate`
- List all virtual environments:
`vf ls`
- Remove a virtual environment:
`vf rm {{virtualenv_name}}`
- Display help:
`vf help`