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
Alternatively, you can download the zip file of the repository at the top of the main page of the repository. If you prefer not to use git or don't have experience with it, this a good option.
21
+
22
+
## 2. Download Anaconda (if you haven't already)
23
+
24
+
If you do not already have the [Anaconda distribution](https://www.anaconda.com/download/) of Python 3, go get it (note: you can also set up your project environment w/out Anaconda using `pip` to install the required packages; however Anaconda is great for Data Science and we encourage you to use it).
25
+
26
+
## 3. Set up your environment
27
+
28
+
### 3a. `conda` users
13
29
14
30
If this is the first time you're setting up your compute environment, use the `conda` package manager to **install all the necessary packages** from the provided `environment.yml` file.
15
31
@@ -35,11 +51,15 @@ To **update the environment** based on the `environment.yml` specification file,
35
51
conda env update -f environment.yml
36
52
```
37
53
38
-
##`pipenv` users
54
+
### 3b. `pip` users
39
55
40
-
Instructions are coming.
56
+
Please install all of the packages listed in the `environment.yml` file manually. An example command would be:
57
+
58
+
```bash
59
+
$ pip install numpy scipy networkx ...
60
+
```
41
61
42
-
## don't want to mess with dev-ops
62
+
### 3c. don't want to mess with dev-ops
43
63
44
64
If you don't want to mess around with dev-ops, click the following badge to get a Binder session on which you can compute and write code.
0 commit comments