Skip to content

Instantly share code, notes, and snippets.

@odewahn
Created June 24, 2015 22:58
Show Gist options
  • Save odewahn/0198744139546c25aabf to your computer and use it in GitHub Desktop.
Save odewahn/0198744139546c25aabf to your computer and use it in GitHub Desktop.
# 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