-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e369f33
commit 0ee7683
Showing
3 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# [pyenv](https://github.com/pyenv/pyenv) | ||
Simple Python Version Management | ||
- equivalent to `nvm` in nodejs ecosystem | ||
|
||
Features | ||
- Independent of Python: made from pure shell scripts | ||
- pyenv's shim approach works by adding a directory to your `$PATH` | ||
|
||
Limit | ||
- > Pyenv does not officially support Windows | ||
- Recommended solution: [`pyenv-win`](https://github.com/pyenv-win/pyenv-win) | ||
|
||
# venv |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,7 @@ create() { | |
python3 -m venv venv | ||
source venv/bin/activate | ||
} | ||
$@ | ||
exit(){ | ||
deactivate | ||
} | ||
"$@" |