mirror of
https://github.com/donnemartin/data-science-ipython-notebooks.git
synced 2024-03-22 13:30:56 +08:00
Added Anaconda commands. Added Git description.
This commit is contained in:
parent
d7b54123e2
commit
8256531f24
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"metadata": {
|
||||
"name": "",
|
||||
"signature": "sha256:d7eaf325fa7b04c2b11dd326edef7cd59edd8794bae843a1d3f0772538e2fa92"
|
||||
"signature": "sha256:228c15dc58e640c2fa954f5b43981c8cc8538f70b7a16e96adf81cbda15c8bbe"
|
||||
},
|
||||
"nbformat": 3,
|
||||
"nbformat_minor": 0,
|
||||
|
@ -14,6 +14,7 @@
|
|||
"source": [
|
||||
"# Misc Commands\n",
|
||||
"\n",
|
||||
"* Anaconda\n",
|
||||
"* Git\n",
|
||||
"* Ruby\n",
|
||||
"* Jekyll\n"
|
||||
|
@ -23,7 +24,44 @@
|
|||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"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."
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user