zoukankan      html  css  js  c++  java
  • install ipython-notebook

    http://it.010lm.com/os/LINUX/182036.html

    ipython[notebook]安装(Linux平台)

    1. 环境

    操作系统:ubuntukylin

    2. 操作步骤

    a)  安装pip工具

    终端输入以下命令:

    sudo apt-get install python-pip

    b) 安装ipython

    终端输入以下命令:

    sudo apt-get install ipython

    there are a error!!!!!!!!!

    csf@ubuntu:~$ sudo apt-get install ipython
    [sudo] password for csf:
    E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)
    E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?

    google have answer!!!!!

    Remove your /var/lib/dpkg/lock file and force package reconfiguration.

    sudo rm /var/lib/dpkg/lock
    sudo dpkg --configure -a
    

    c) 安装ipython[notebook]

    终端输入以下命令:

    sudo apt-get install ipython-notebook

    d) 启动ipython[notebook]

    终端输入以下命令:

    ipython notebook
  • 相关阅读:
    17111 Football team
    Train Problem I (HDU 100题纪念)
    迷宫问题
    图形点扫描
    看病要排队(stl)
    水果
    Prime Ring Problem
    N皇后问题
    2^x mod n = 1
    Queuing
  • 原文地址:https://www.cnblogs.com/cdsj/p/5457892.html
Copyright © 2011-2022 走看看