Skip to content

Commit

Permalink
align
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkhala committed Jan 14, 2025
1 parent e369f33 commit 0ee7683
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
13 changes: 13 additions & 0 deletions env/README.md
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.
5 changes: 4 additions & 1 deletion venv.sh → env/venv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@ create() {
python3 -m venv venv
source venv/bin/activate
}
$@
exit(){
deactivate
}
"$@"

0 comments on commit 0ee7683

Please sign in to comment.