We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e369f33 commit 0ee7683Copy full SHA for 0ee7683
env/README.md
@@ -0,0 +1,13 @@
1
+# [pyenv](https://github.com/pyenv/pyenv)
2
+Simple Python Version Management
3
+- equivalent to `nvm` in nodejs ecosystem
4
+
5
+Features
6
+- Independent of Python: made from pure shell scripts
7
+- pyenv's shim approach works by adding a directory to your `$PATH`
8
9
+Limit
10
+- > Pyenv does not officially support Windows
11
+ - Recommended solution: [`pyenv-win`](https://github.com/pyenv-win/pyenv-win)
12
13
+# venv
pyenv.sh renamed to env/pyenv.sh
venv.sh renamed to env/venv.sh
@@ -2,4 +2,7 @@ create() {
python3 -m venv venv
source venv/bin/activate
}
-$@
+exit(){
+ deactivate
+}
+"$@"
0 commit comments