Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download

Python Data Science Handbook

Views: 90277

Tools for creating http://jakevdp.github.io/PythonDataScienceHandbook/

Building the Blog

Clone the repository & make sure submodules are included

$ git clone https://github.com/jakevdp/PythonDataScienceHandbook.git $ git checkout origin/website $ git submodule update --init --recursive $ cd website

Install the required packages:

$ conda create -n pelican-blog python=3.5 jupyter notebook $ source activate pelican-blog $ pip install pelican Markdown ghp-import

Build the html and serve locally:

$ make html $ make serve $ open http://localhost:8000

Deploy to github pages

$ make publish-to-github