Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion setup/environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ Optimise gem sizes:
echo "gem: --no-document" >> ~/.gemrc
```

## Install Python
## Install Python (Intel chip Mac Books)

Check if you need it first: `python -V`

Expand All @@ -210,6 +210,29 @@ source ~/.zshrc

CHECK:

```
python -V
```
## Install Python (M1 chip Mac Books)

Check if you need it first: `python -V` or `python3 -V`

If yes:

```
brew install python
```

Add path to new python bin to your `~/.zshrc` ie:

```
echo -n "\nalias python=/usr/bin/python3" >> ~/.zshrc

source ~/.zshrc
```

CHECK:

```
python -V
```
Expand Down