From 83d01268dc81c367ecaab7d6819979c1074426d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Geron?= Date: Wed, 19 Dec 2018 11:54:11 +0800 Subject: [PATCH] Replace `source activate` with `conda activate` Fixes #331 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eef362c..c02daa2 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ If you choose to use Anaconda, read the next section, or else jump to the [Using When using Anaconda, you can optionally create an isolated Python environment dedicated to this project. This is recommended as it makes it possible to have a different environment for each project (e.g. one for this project), with potentially different libraries and library versions: $ conda create -n mlbook python=3.5 anaconda - $ source activate mlbook + $ conda activate mlbook This creates a fresh Python 3.5 environment called `mlbook` (you can change the name if you want to), and it activates it. This environment contains all the scientific libraries that come with Anaconda. This includes all the libraries we will need (NumPy, Matplotlib, Pandas, Jupyter and a few others), except for TensorFlow, so let's install it: