Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
## OS configs
.DS_Store

# Project
data/*
models/*
reports/*

# Python
__pycache__
.ipynb_checkpoints
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
### 1. Fork / Clone this repository

```bash
git clone https://gitlab.com/iterative.ai/cse/tutorials/course-ds-base.git
git clone https://github.com/iterative/course-ds-base.git
cd course-ds-base
```

Expand All @@ -15,6 +15,7 @@ cd course-ds-base
Create virtual environment named `dvc-venv` (you may use other name)
```bash
python3 -m venv dvc-venv
echo "export PYTHONPATH=$PWD" >> dvc-venv/bin/activate
source dvc-venv/bin/activate
```
Install python libraries
Expand All @@ -30,9 +31,13 @@ Add Virtual Environment to Jupyter Notebook
python -m ipykernel install --user --name=dvc-venv
```

Configure ToC for jupyter notebook (optional)
Configure ToC for jupyter notebook (optional)/Install the python package

```bash


pip install jupyter_contrib_nbextensions

jupyter contrib nbextension install --user
jupyter nbextension enable toc2/main
```
Expand Down
Empty file added file.txt
Empty file.
Loading