python
Il est inclus dans mac.
$ python --version
Python 2.7.6
pip
Installez pip.
$ curl -kL https://raw.github.com/pypa/pip/master/contrib/get-pip.py | sudo python
Collecting pip
Downloading pip-6.0.8-py2.py3-none-any.whl (1.3MB)
100% |################################| 1.3MB 330kB/s
Installing collected packages: pip
Successfully installed pip-6.0.8
virtualenvwrapper
Afin d'emballer l'environnement de développement, nous utiliserons virtualenvwrapper.
$ sudo pip install virtualenv virtualenvwrapper
Running setup.py install for virtualenv-clone
Installing virtualenv-clone script to /usr/local/bin
Successfully installed argparse-1.3.0 pbr-0.10.7 six-1.9.0 stevedore-1.2.0 virtualenv-12.0.7 virtualenv-clone-0.2.5 virtualenvwrapper-4.3.2
Écrivez pour définir les variables d'environnement et appuyez sur le shell de virtualenvwapper lors du démarrage du shell.
.bashrc
if [ -f /usr/local/bin/virtualenvwrapper.sh ]; then
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
fi
Reflétez-le immédiatement.
$ . ~/.bashrc
Faisons un atelier.
$ mkvirtualenv work
New python executable in work/bin/python
Installing setuptools, pip...done.
Quittez l'environnement, entrez.
$ deactivate
$ workon work
ipython
Installez ipython et tout le reste et lancez notebook. Je me demande si c'est emacs + ipython ou notebook, mais maintenant je peux aussi démarrer notebook.
$ pip install ipython
Successfully installed gnureadline-6.3.3 ipython-2.4.0
$ pip install pyzmq
Successfully installed pyzmq-14.5.0
$ pip install jinja2
Successfully installed jinja2-2.7.3 markupsafe-0.23
$ pip install tornado
Successfully installed backports.ssl-match-hostname-3.4.0.2 certifi-14.5.14 tornado-4.0.2
$ ipthon notebook
Recommended Posts