-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathanaconda_install.html
70 lines (49 loc) · 2.23 KB
/
anaconda_install.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Installing Continuum's Anaconda</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<h1>Installing Continuum's Anaconda Python</h1>
<img src="figures/anaconda.png" style="float: right; width: 30%; margin-right: 1%; margin-bottom: 0.5em;">
Anaconda is a Python distribution that bundles the Python programming
language and over 720 Python packages for scientific computing, some of which
provide spatial analysis and/or GIS functionality.<p>
<ol>
<li>Go to the Continuum website and <a
href="https://www.continuum.io/downloads" target="_blank"
>download the 64-bit version of Python 3.6</a> for your operating
system.</li>
<li>Install the downloaded file as you would any piece of software.
<ul>
<li>Use all the defaults</li>
</ul>
<li>Finish the install from the command line</li>
<ul>
<li>On Mac open the Terminal application (Applications > Utilities >
Terminal) on Windows open the Anaconda Prompt application
(Start > Anaconda (64-bit) > Anaconda Prompt)</li>
<li>Update all the Python packages. Type (or copy-and-paste) the following and hit Enter: <tt>conda update --all</tt> </li>
</ul>
</ol>
<h3>Install a Good Text Editor</h3>
A good text editor will make coding easier and more fun. The following are solid options, but others exist.
<ul>
<li>Mac: <a href="https://www.barebones.com/products/bbedit/">BBEdit</a></li>
<li>Windows: <a href="https://notepad-plus-plus.org/">Notepad++</a></li>
</ul>
<p>
<p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</div>
<script src="javascripts/scale.fix.js"></script>
</body>
</html>