Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

41
vf Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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`