Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cmdcolin/ipython_demo
IPython demo
https://github.com/cmdcolin/ipython_demo
Last synced: 4 days ago
JSON representation
IPython demo
- Host: GitHub
- URL: https://github.com/cmdcolin/ipython_demo
- Owner: cmdcolin
- Created: 2015-06-30T04:46:24.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-01T15:53:35.000Z (over 9 years ago)
- Last Synced: 2024-04-15T02:14:34.932Z (7 months ago)
- Size: 107 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Quick-start Tutorial
Here we will start with some basic steps to start you down the road
to becoming a developer!Let's start by forking the repo on github, and then creating a clone.
git clone https://github.com/yourusername/ipython_demo.git
You can try changing the text of this README, then using `git commit`
and `git push` to upload your changesgit add README.md
git commit -m "Updated README"
git pushIf all goes well, this will be pushed to your repo!
## IPython demo
To test out the IPython notebook functions in github, we will look at
the recent news about this nice synergy.https://github.com/blog/1995-github-jupyter-notebooks-3
Then let's just try and install IPython notebook (aka Jupyter) and
Matplotlib:pip install ipython[notebook]
pip install matplotlib
ipython notebookThis will launch a web-based based jupyter shell and we can use this
for interactively coding our demo.Note: if you have trouble with these steps, feel free to ask me but
also note that the demo notebook will run on github even if you don't
have these packages installed to your computerMac OSX note: It is likely better to use a homebrew version of python
because otherwise there are errors about missing "Python.h"