Demo for the "Intro to Data Science and Machine Learning" Workshop on 9th April 2019
- Clone this repo:
$ git clone https://github.com/ohjho/HKU_Demo.git
$ cd HKU_Demo
- install the requirements. Doing this inside a [virtualenv][url_virtualenv] is highly recommend and avoid dependency hell.
#---------------- optional ------------------
$ mkvirtualenv --python=`which python3` NameOfYourEnv
$ workon NameOfYourEnv
(NameOfYourEnv) $ pip freeze > uninstall.txt
(NameOfYourEnv) $ pip uninstall -r uninstall.txt -y
(NameOfYourEnv) $ rm uninstall.txt
#--------------------------------------------
(NameOfYourEnv) $ pip install -r requirements.txt
and just check and resolve any packages dependency issues if they show up under pip check
. It should say No broken requirements found.
- Start Jupyter notebook
$ jupyter notebook
- Have fun and go build some awesome projects! 🏄