xuejunxu / longhorn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pre-Requisites

Install python 3.5 or above on your machine:

Install pip:

Download this script: https://bootstrap.pypa.io/get-pip.py

Run (you may need to specify python3 if you also have python2 installed)

$ python get-pip.py

or

$ python3 get-pip.py

Install git:

https://git-scm.com/downloads

Install virtualenv:

$ pip install virtualenv

Download longhorn and install requirements

$ git clone https://github.com/jimmysong/longhorn
$ cd longhorn
$ virtualenv -p python3 .venv

Linux/OSX:

$ . .venv/bin/activate
(.venv) $ pip install -r requirements.txt

Windows:

> .venv\Scripts\activate.bat
> pip install -r requirements.txt

Run jupyter notebook

(.venv) $ jupyter notebook

About

License:BSD 2-Clause "Simplified" License


Languages

Language:Jupyter Notebook 55.6%Language:Python 44.4%