Skip to content

Commit 0ee7683

Browse files
committed
align
1 parent e369f33 commit 0ee7683

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

env/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

File renamed without changes.

venv.sh renamed to env/venv.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@ create() {
22
python3 -m venv venv
33
source venv/bin/activate
44
}
5-
$@
5+
exit(){
6+
deactivate
7+
}
8+
"$@"

0 commit comments

Comments
 (0)