File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,20 @@ Python data science and machine learning tutorial
7
7
8
8
``` shell
9
9
git clone
[email protected] :ephes/data_science_tutorial.git ds_tutorial
10
+ cd ds_tutorial
10
11
```
11
12
12
13
## Miniconda
13
14
14
15
To set up the environment you should at first install
15
16
[ miniconda] ( https://conda.io/miniconda.html ) . And update it:
16
17
18
+ FIXME / TODO:
19
+ * maybe add a line about installing miniconda with pyenv?
20
+ * conda update -n base conda | does not work with pyenv..
21
+ * It's fixed by: python -m pip install chardet
22
+ * conda init fish
23
+
17
24
``` shell
18
25
conda update -n base conda
19
26
```
@@ -22,7 +29,7 @@ Then proceed to create the conda environment:
22
29
23
30
``` shell
24
31
cd ds_tutorial
25
- conda env create
32
+ conda env create -f environment.yml
26
33
```
27
34
28
35
## Activate Environment
@@ -33,12 +40,19 @@ conda activate ds_tutorial
33
40
```
34
41
35
42
## Install ds_tutorial package
43
+
44
+ FIXME:
45
+ * probably not
46
+
36
47
```
37
48
pip install -e .
38
49
```
39
50
40
51
# Start notebook server
41
52
53
+ FIXME:
54
+ * no makefile
55
+
42
56
``` shell
43
57
make notebook
44
58
```
You can’t perform that action at this time.
0 commit comments