You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: books/setup.md
+16-19Lines changed: 16 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# Computing environment setup
2
2
3
3
The goal of this section is to create a computing environment on your computer to run and use the code given in the jupyter-book.
4
-
Follow the steps below to setup anaconda, create an environment, and install some initial
4
+
Follow below steps for setting up anaconda, creating an environment, and installing some initial
5
5
packages in the new environment. If you already have Anaconda or know any other method
6
6
which suits your needs in a better manner, then you are free to use that. **The end goal is to have
7
7
a working computing environment to use along with the jupyter-book**.
@@ -13,7 +13,7 @@ steps will be very similar but there might be more usage of terminal commands.
13
13
14
14
You can skip this step if you already have Anaconda (or miniconda) installed.
15
15
16
-
1. Download anaconda from https://www.anaconda.com/.
16
+
1. Download anaconda from https://www.anaconda.com/download/success.
17
17
18
18
2. Open the installer and follow the instructions.
19
19
@@ -33,7 +33,7 @@ going through these tutorials if you choose to use Navigator to setup the enviro
33
33
Another alternative for creating a computing environment is to use miniconda which is a minimal
34
34
installation of Anaconda containing only conda, Python and a few other useful packages such as
35
35
pip. Instructions for installation of miniconda will not be covered in this guide and can be found [here](https://docs.conda.io/projects/miniconda/en/latest/). If you want to know more, there is also a
36
-
comparison between Anaconda and miniconda given [here](https://docs.conda.io/projects/conda/en/stable/user-guide/install/download.html#anaconda-or-miniconda).
36
+
comparison between Anaconda and miniconda given [here](https://docs.anaconda.com/distro-or-miniconda/).
37
37
In general, it is recommended to use Anaconda if you are new to conda or Python. If
38
38
you have installed miniconda, it will also come with an Anaconda Prompt and a procedure like
39
39
the one outlined in the below steps can be used to set up the computing environment.
@@ -48,7 +48,7 @@ the one outlined in the below steps can be used to set up the computing environm
48
48
49
49

50
50
51
-
2. Type in ``conda list`` and press enter to run this command. You will see the list of packages
51
+
2. Type ``conda list`` and press enter to run this command. You will see the list of packages
52
52
installed in the base environment.
53
53
54
54

@@ -65,7 +65,7 @@ the one outlined in the below steps can be used to set up the computing environm
65
65
3. To create a new env, run the command: ``conda create -n ENVNAME python=3.9``. Replace
66
66
ENVNAME with whatever name you want to give to the new environment. The
67
67
``python=3.9`` after the environment name tells conda what version of python to install.
68
-
We will be using python version 3.9 for this class.
68
+
We will be using python version 3.9 in this book.
69
69
70
70

71
71
@@ -74,13 +74,13 @@ the one outlined in the below steps can be used to set up the computing environm
0 commit comments