Skip to content

Commit

Permalink
Pyenv
Browse files Browse the repository at this point in the history
  • Loading branch information
dpurge committed Nov 29, 2023
1 parent 9ea739f commit cef517a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions content/docs/devops/macos/python.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Python on MacOS

```sh
brew update
brew install pyenv
```

Check:

```sh
pyenv root
```

Install python:

```sh
pyenv install -l
pyenv install 3.12.0
pyenv global 3.12.0
pyenv version
```

Add to `~/.zshenv`: `eval "$(pyenv init -)"`

Install packages:

```sh
pip install --upgrade pip
pip install awscli
```

0 comments on commit cef517a

Please sign in to comment.