Skip to content

Commit dceb615

Browse files
committed
#1 marked some todos
1 parent bdd7806 commit dceb615

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,20 @@ Python data science and machine learning tutorial
77

88
```shell
99
git clone [email protected]:ephes/data_science_tutorial.git ds_tutorial
10+
cd ds_tutorial
1011
```
1112

1213
## Miniconda
1314

1415
To set up the environment you should at first install
1516
[miniconda](https://conda.io/miniconda.html). And update it:
1617

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+
1724
```shell
1825
conda update -n base conda
1926
```
@@ -22,7 +29,7 @@ Then proceed to create the conda environment:
2229

2330
```shell
2431
cd ds_tutorial
25-
conda env create
32+
conda env create -f environment.yml
2633
```
2734

2835
## Activate Environment
@@ -33,12 +40,19 @@ conda activate ds_tutorial
3340
```
3441

3542
## Install ds_tutorial package
43+
44+
FIXME:
45+
* probably not
46+
3647
```
3748
pip install -e .
3849
```
3950

4051
# Start notebook server
4152

53+
FIXME:
54+
* no makefile
55+
4256
```shell
4357
make notebook
4458
```

0 commit comments

Comments
 (0)