博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu 16.04安装pip、pip3、ipython和ipython3
阅读量:6040 次
发布时间:2019-06-20

本文共 1192 字,大约阅读时间需要 3 分钟。

在ubuntu 16.04 server版上安装pip、pip3、ipython2和ipython3

具体步骤如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
wangpeng@ubuntu:~$ 
sudo 
apt 
install 
python3-pip
wangpeng@ubuntu:~$ 
sudo 
apt 
install 
python-pip
wangpeng@ubuntu:~$ 
sudo 
pip3 
install 
ipython
wangpeng@ubuntu:~$ wget https:
//pypi
.python.org
/packages/f7/48/5702699caf20208d61a92157c01d1eb281093e3e02e9bcd4b5031ccea6a1/ipython-5
.4.1-py2-none-any.whl
#md5=2b801f50b5e82a3fabca42b661568bf5
wangpeng@ubuntu:~$ 
sudo 
pip 
install 
ipython-5.4.1-py2-none-any.whl
wangpeng@ubuntu:~$ ipython2
Python 2.7.12 (default, Nov 19 2016, 06:48:10) 
Type 
"copyright"
"credits" 
or 
"license" 
for 
more 
information.
IPython 5.4.1 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 
'object'
, use 
'object??' 
for 
extra details.
In [1]: 
wangpeng@ubuntu:~$ ipython3
Python 3.5.2 (default, Nov 17 2016, 17:05:23) 
Type 
'copyright'
'credits' 
or 
'license' 
for 
more 
information
IPython 6.1.0 -- An enhanced Interactive Python. Type 
'?' 
for 
help.
In [1]:
本文转自 wangpengtai  51CTO博客,原文链接:http://blog.51cto.com/wangpengtai/1963286,如需转载请自行联系原作者
你可能感兴趣的文章
Protocol Buffer技术详解(语言规范)
查看>>
Java设计模式之从[暗黑破坏神存档点]分析备忘录(Memento)模式
查看>>
OSG第一个Demo
查看>>
C# 加密解密(DES,3DES,MD5,Base64) 类
查看>>
弹出保存文件、打开文件对话框
查看>>
ThinkPHP 获取配置文件中的值
查看>>
js正則表達式语法
查看>>
Android 测试工具集02
查看>>
【CF】148D Bag of mice
查看>>
Wi-Fi万能钥匙:说是破解,其实有危险(转)
查看>>
微软历史最高市值是多少?
查看>>
Boost中的智能指针(转)
查看>>
EntityFramework 实体拆分和表拆分
查看>>
web应用程序访问串口
查看>>
简介数据库日志文件的增长
查看>>
Weblogic
查看>>
Don't Repeat Yourself (不要重复你自己)
查看>>
json \u unicode字符串转化 c++
查看>>
基于HTML5 SVG和CSS3炫酷蹦床式图片切换特效
查看>>
C语言指针的初始化和赋值
查看>>