1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
\section{Installing Anaconda}\label{installing-anaconda}
This tutorial will cover the steps on how to install Anaconda.
\emph{Note for Advanced users: For those who wish to have a lightweight
installation, can install miniconda or miniForge, however for this
course we will show you how to use Anaconda Navigator. If you've never
used the programs before then using Anaconda is recommended.}
\subsubsection{What is Anaconda?}\label{what-is-anaconda}
Anaconda Distribution is a popular open-source Python distribution
specifically designed for scientific computing, data science, machine
learning, and artificial intelligence applications. It simplifies the
set up and use of Python for data science, machine learning, and
scientific computing. It comes with all the important tools you need,
like NumPy, Pandas, and JupyterLab, so you don't have to install
everything separately. The Conda package manager helps you install and
update software without worrying about breaking other programs. It also
lets you create separate environments, so different projects don't
interfere with each other. Additionally, Anaconda includes programs like
JupyterLab for interactive coding, and Spyer a MATLAB-like IDE.
\subsection{Instructions}\label{instructions}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\item
Find the latest version of Navigator from the official Anaconda
Inc.~website: \href{https://www.anaconda.com/download}{Download
Anaconda}
\item
Press the \emph{Download Now} button.
\item
Press the \emph{Skip registration} button below the submit button,
otherwise submit your email address to subscribe to the Anaconda email
list.
\item
Under Anaconda Installers press \emph{Download} or find the
appropriate version for your operating system below.
\end{enumerate}
Proceed to next section for your respective operating system.
\subsubsection{Windows}\label{windows}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{4}
\tightlist
\item
Once the download is complete, double click the executable (.exe) file
to start the installer. Proceed with the installation instructions.
\end{enumerate}
\begin{figure}
\centering
\includegraphics{figures/installingAnaconda_windows_installer_01_welcome.png}
\caption{Welcome screen}
\end{figure}
\begin{figure}
\centering
\includegraphics{figures/installingAnaconda_windows_installer_02_terms.png}
\caption{Terms and conditions}
\end{figure}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{5}
\tightlist
\item
Select the \emph{Just Me} recommended option.
\end{enumerate}
\begin{figure}
\centering
\includegraphics{figures/installingAnaconda_windows_installer_03_for.png}
\caption{Install for}
\end{figure}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{6}
\tightlist
\item
You can leave the destination folder as is, just make sure you have a
minimum of \textasciitilde5 GB available storage space. Press
\emph{Next} to proceed.
\end{enumerate}
\begin{figure}
\centering
\includegraphics{figures/installingAnaconda_windows_installer_04_destination.png}
\caption{Installation destination}
\end{figure}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{7}
\tightlist
\item
It is recommended to register Anaconda3 as the default python version
if you already have an instance of python installed. Otherwise, you
can leave the checkboxes as defaults.
\end{enumerate}
\begin{figure}
\centering
\includegraphics{figures/installingAnaconda_windows_installer_05_advanced.png}
\caption{Avanced Options}
\end{figure}
\begin{figure}
\centering
\includegraphics{figures/installingAnaconda_windows_installer_06_installing.png}
\caption{Installing}
\end{figure}
\begin{figure}
\centering
\includegraphics{figures/installingAnaconda_windows_installer_07_installing2.png}
\caption{Installing 2}
\end{figure}
\begin{figure}
\centering
\includegraphics{figures/installingAnaconda_windows_installer_08_installing_complete.png}
\caption{Complete}
\end{figure}
\begin{figure}
\centering
\includegraphics{figures/installingAnaconda_windows_installer_09_cloud.png}
\caption{Cloud}
\end{figure}
\begin{figure}
\centering
\includegraphics{figures/installingAnaconda_windows_installer_10_finish.png}
\caption{Finish}
\end{figure}
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\setcounter{enumi}{8}
\tightlist
\item
You made it! Anaconda is now installed, you are ready for launch.
Assuming that you didn't add Anaconda to PATH environment variable you
will need to start navigator from the start menu.
\end{enumerate}
\subsubsection{Mac/Linux}\label{maclinux}
Anaconda provides installation documentation for Mac and Linux users,
please refer to the
\href{https://docs.anaconda.com/anaconda/install/}{documentation page}.
|