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
10 changes: 8 additions & 2 deletions setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,16 @@ cd ppml-tutorial
The repository contains an `environment.yml` file that can be used to automatically recreate the
conda environment with all the required packages:


👉 non-Mac Silicon users
```bash
conda env create -f environment.yml
```
👉 Mac Silicon users only:
Not all libraries might be available for Mac Silicon. Adding a prefix allows to to create a conda environment on Intel libs.
```bash
CONDA_SUBDIR=osx-64 conda env create -f environment.yml
```


Once this is complete, you should now have a new conda environment named `ppml`.

Expand Down Expand Up @@ -113,4 +119,4 @@ To do so, please open the `Get-Ready.ipynb` notebook to check that everything wo

```bash
jupyter notebook Get-Ready.ipynb
```
```