Added Anaconda commands. Added Git description.

This commit is contained in:
Donne Martin 2015-03-01 06:01:30 -05:00
parent d7b54123e2
commit 8256531f24

View File

@ -1,7 +1,7 @@
{ {
"metadata": { "metadata": {
"name": "", "name": "",
"signature": "sha256:d7eaf325fa7b04c2b11dd326edef7cd59edd8794bae843a1d3f0772538e2fa92" "signature": "sha256:228c15dc58e640c2fa954f5b43981c8cc8538f70b7a16e96adf81cbda15c8bbe"
}, },
"nbformat": 3, "nbformat": 3,
"nbformat_minor": 0, "nbformat_minor": 0,
@ -14,6 +14,7 @@
"source": [ "source": [
"# Misc Commands\n", "# Misc Commands\n",
"\n", "\n",
"* Anaconda\n",
"* Git\n", "* Git\n",
"* Ruby\n", "* Ruby\n",
"* Jekyll\n" "* Jekyll\n"
@ -23,7 +24,44 @@
"cell_type": "markdown", "cell_type": "markdown",
"metadata": {}, "metadata": {},
"source": [ "source": [
"## Git" "## Anaconda\n",
"\n",
"Anaconda is a scientific python distribution containing Python, NumPy, SciPy, Pandas, IPython, Matplotlib, Numba, Blaze, Bokeh, and other great Python data analysis tools."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# See Anaconda installed packages\n",
"conda list\n",
"\n",
"# Create Python 3 environment\n",
"conda create -n py3k python=3 anaconda\n",
"\n",
"# Activate Python 3 environment\n",
"source activate py3k\n",
"\n",
"# Deactivate Python 3 environment\n",
"source deactivate\n",
"\n",
"# Update Anaconda\n",
"conda update conda\n",
"\n",
"# Update a package with Anaconda\n",
"conda update ipython"
],
"language": "python",
"metadata": {},
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Git\n",
"\n",
"Git is a distributed revision control system."
] ]
}, },
{ {