diff --git a/setup.md b/setup.md index 55f28b3..20c62ab 100644 --- a/setup.md +++ b/setup.md @@ -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`. @@ -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 -``` \ No newline at end of file +```