Skip to content

Commit

Permalink
Update to python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
DocGarbanzo authored Apr 1, 2024
1 parent 3de0496 commit 9ef2fd8
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions docs/guide/host_pc/setup_mac.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Setup your `donkey` conda env with:

```bash
conda create -n donkey python=3.9
conda create -n donkey python=3.11
conda activate donkey
```

Expand All @@ -28,7 +28,14 @@ As you have activated the new `donkey` env already you simply type:
```bash
pip install donkeycar[pc]
```
if you are using an Intel Mac or you type:
If you are using ZSH (which is default on MacOS) you need to escape
`[` and `]` and hence you would rather type:

```bash
pip install donkeycar\[pc\]
```
If you are using an Intel Mac or you type (read above how to change
this if you are using ZSH):

```bash
pip install donkeycar[macos]
Expand Down

0 comments on commit 9ef2fd8

Please sign in to comment.