generated from Sydney-Informatics-Hub/training-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.qmd
48 lines (33 loc) · 967 Bytes
/
setup.qmd
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
---
title: "Setup"
output:
html_document:
toc: false
toc_float: false
---
# Go to [Google Colab](https://colab.research.google.com/)
Sign in to [Google Colab](https://colab.research.google.com/) if you are not already. Launch "File > New Notebook in Drive".
Done.
If you would prefer to have a local version of the Python environment we are using, see below for setup instructions.
# At home setup
To complete the exercises presented in the workshop, you may create a Python environment with the following packages:
```sh
git clone https://github.com/Sydney-Informatics-Hub/ParallelPython.git
cd ParallelPython
conda env create -f environment.yml
conda activate parallel
```
At the time of this workshop, the major package versions were:
```default
dask=2022.10.0
jupyterlab=3.4.8
matplotlib-base=3.5.3
numpy=1.23.4
pandas=1.5.1
python=3.9.13
scikit-learn=1.1.2
scipy=1.9.3
seaborn=0.12.1
polars=1.3.0
```
Other combinations may also work.