Installation

bookstore may be installed using Python 3.6 and above.

After installation, bookstore can process Python 2 or Python 3 notebooks.

Install from conda-forge

conda install -c conda-forge bookstore

Install from Source

  1. Clone this repo:

    git clone https://github.com/nteract/bookstore.git
    
  2. Change directory to repo root:

    cd bookstore
    
  3. Install dependencies:

    python3 -m pip install -r requirements.txt
    python3 -m pip install -r requirements-dev.txt
    
  4. Install package from source:

    python3 -m pip install .
    

    Tip

    Don’t forget the dot at the end of the command