Corso python

Setup Ambiente

# clonare il corso
git clone https://github.com/danielino/python-course-jupyter
cd python-course-jupyter

# creazione ed attivaizone virtualen
python3.7 -m venv venv
source venv/bin/activate

# installazione dipendenze
[[ -f requiremments.txt ]] && \
	pip install -r requirements.txt

jupyter lab