• Stars
    star
    161
  • Rank 233,470 (Top 5 %)
  • Language
    Python
  • License
    BSD 2-Clause "Sim...
  • Created about 7 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Pre-Requisites

Install python 3.8 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

Install git:

https://git-scm.com/downloads

Install virtualenv:

$ pip install virtualenv

Download pb-exercises requirements

$ git clone https://github.com/jimmysong/pb-exercises
$ cd pb-exercises
$ 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