From a8b66c01c55b8877ffa2b9617788c6969efde586 Mon Sep 17 00:00:00 2001 From: Lily Su Date: Mon, 11 Sep 2023 15:41:50 -0500 Subject: [PATCH] fixed missing initial naming of the conda environment. No way to activate book without having named it book from the beginning. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b64ffd1..f909651 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ $ cd notebooks Next, run the following command to create a `conda` virtual environment that contains all the libraries needed to run the notebooks: ```bash -$ conda env create -f environment.yml +$ conda env create -n book -f environment.yml ``` > Note: You'll need a GPU that supports NVIDIA's [CUDA Toolkit](https://developer.nvidia.com/cuda-toolkit) to build the environment. Currently, this means you cannot build locally on Apple silicon 😢. @@ -56,7 +56,7 @@ $ conda env create -f environment.yml Chapter 7 (Question Answering) has a special set of dependencies, so to run that chapter you'll need a separate environment: ```bash -$ conda env create -f environment-chapter7.yml +$ conda env create -n book-chapter7 -f environment-chapter7.yml ``` Once you've installed the dependencies, you can activate the `conda` environment and spin up the notebooks as follows: