Created
June 24, 2015 22:58
-
-
Save odewahn/0198744139546c25aabf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set up a working ipython environment | |
The simplest way to do this is to install Anaconda: | |
http://docs.continuum.io/anaconda/install.html | |
# Install IPython3 | |
Here's a good post on how to do it: | |
http://www.continuum.io/blog/anaconda-python-3 | |
``` | |
conda create -n py3k python=3 anaconda | |
source activate py3k | |
``` | |
# Install the ipymd plugin | |
``` | |
pip install ipymd | |
``` | |
# Clone the repo | |
The repo is at: | |
* https://atlas.oreilly.com/meghanorm/python-data-cookbook/branch/odewahn | |
Be sure work in a branch! | |
``` | |
git checkout -b odewahn | |
``` | |
# Convert the content into Atlas-flavored markdown | |
``` | |
ipymd --from notebook --to atlas *.ipynb | |
``` | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment