ipython notebook install

1.python install (ubuntut系统默认2.7.x)

Github: https://github.com/ipython/ipython

2.sudo apt-get install ipython

3. sudo apt-get install ipython-notebook

4.install pyzmq

1)download zeromq : http://zeromq.org/bindings:python

./configure

install

sudo make install

sudo ldconfig

2)download pyzmq: https://pypi.python.org/pypi/pyzmq   或  https://github.com/zeromq/pyzmq

python setup.py build_ext --inplace  (没通过提示缺少信赖)

sudo apt-get install Cython  (解决上述问题)

python setup.py build_ext --inplace

sudo python setup.py install

python -c "import zmq"

5.download tornado: https://github.com/tornadoweb/tornado

python setup.py build

sudo python setup.py install

6.ipython notebook :在web端打开

7.数据分析工具MathJax:  https://github.com/mathjax/mathjax

在ipython下输入:from IPython.external.mathjax import install_mathjax
时间: 2024-10-14 10:56:54

ipython notebook install的相关文章

ubuntu web server ipython notebook install

http://blog.csdn.net/yehuohan/article/details/51389966 ipython notebook installhttp://blog.csdn.net/xlbryant/article/details/48471237

Windows下基于Python3安装Ipython Notebook(即Jupyter)。python –m pip install XXX

1.安装Python3.x,注意修改环境变量path(追加上python安装目录,如:D:\Program Files\Python\Python36-32) 2.查看当前安装的第三方包:python –m pip list 3.安装IPython:python –m pip install ipython[all] 4.安装其它: python –m pip install pyzmq python -m pip install jinja2 python -m pip install tor

IPython notebook详细安装教程

IPython从4.0开始,为了项目的独立运行,便将notebook等一系列附加组件迁移至jupyter中,从而使得IPython专注于交互式python这一功能.让我们来看看官网上的解释: “IPython is a growing project, with increasingly language-agnostic components. IPython 3.x was the last monolithic release of IPython, containing the note

pyzmq missing when running ipython notebook

Q: I can run iPython, but when I try to initiate a notebook I get the following error: ~ ipython notebook Traceback (most recent call last): File "/usr/local/bin/ipython", line 8, in <module> load_entry_point('ipython==2.1.0', 'console_scr

Windows环境下安装IPython NoteBook

本文的环境:64位windows8,32位python2.7.首先你要保证电脑上装有python,并且设置成环境变量. 1.windows命令行进入到python目录下的Scripts文件,或者在该目录下直接新建git bash. 2.下载安装 pyzmq, 在这里不建议使用pip, pip对pyzmq支持不太好,装不上.我尝试使用easy_install easy_install pyzmq 似乎中间报了一个错,不过最后还是提示安装成功, 接着同样的方法安装jinja2, tornado 3.

ipython[notebook]安装(windows平台)

环境:windows 8.1 professional 64位 方案一:python 2.7.9.amd64.msi+pip6.0.8 1. 下载安装python 2.7.9.amd.64.msi.下载地址:https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi 2. 下载安装pip6.0.8.下载地址:https://bootstrap.pypa.io/get-pip.py 安装方法:https://pip.pypa.io/

ipython notebook 安装及设置的一些后续问题

官方安装指南 https://github.com/yyuu/pyenv#homebrew-on-mac-os-x 注意: Rebuild the shim binaries. You should do this any time you install a new Python binary. (Examples: installing a new Python version, or installing a package that provides a binary.) https:/

windows上安装Ipython notebook

最近有一个培训机构找笔者来做一份Python的培训教材,顺带着研究了下python notebook,发现很好很强大,现把初步的安装步骤记录如下:         1.安装Python 这个是必须的,在http://www.python.org/download/ 下载最新的Python版本.按照自己的平台下载对应的版本,然后安装即可. 2. 安装IPython 直接使用:pip install ipython 下载安装最新的ipython组件 3.安装pyzmq 直接使用easy_instal

ipython notebook在Ubuntu下的安装

在Linux环境下,其实IDE环境配置比较容易配.所以建议用linux做开发. 首选启动终端:Ctrl+Alt+T 1.sudo apt-get update 2.sudo apt-get install python-pip 3.sudo apt-get install ipython 4.sudo apt-get install ipython-notebook 5.ipython notebook