Skip to content

Commit

Permalink
Update README with instructions to use conda env
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Volpatto authored Oct 26, 2019
1 parent c31786e commit 21c7967
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,15 @@ This installs the latest version of TensorFlow available for Anaconda (which is
Next, you can optionally install Jupyter extensions. These are useful to have nice tables of contents in the notebooks, but they are not required.

$ conda install -n mlbook -c conda-forge jupyter_contrib_nbextensions

For a proper usage of the examples in the book, an `environment.yml` file is provided with the same packages (and versions)
as in `requeriments.txt`. This way, you can generate pretty much the same environment using Python `virtualenv` or `conda`.
You can do it out-of-the-box, just run the following command:

$ conda env create -f environment.yml

Doing so, you now have a conda environment named `mlbook` ready to use! Just activate it, then you have everything setted up
for you.

You are all set! Next, jump to the [Starting Jupyter](#starting-jupyter) section.

Expand Down

0 comments on commit 21c7967

Please sign in to comment.