linux python2 升级 python3

Joshua

Centos/Linux 下升级python2.7至3.5.0

(一) 安装Python3.5

(1)在安装python之前,因为linux系统下默认没有安装wget,gcc,首先安装wget,gcc:

1[root@node6 python_scripts]#yuminstallwget2[root@node6 python_scripts]#yuminstallgcc

(2)安装依赖:

!!!在编译之前需要安装一些必须的依赖,否则当报错的时候还得重新编译 

yuminstallopenssl-devel  -yyuminstallzlib-devel  -y

(3)利用wget下载python3.5.0的安装文件并解压缩:

1[root@node6 python_scripts]#wgethttps://www.python.org/ftp/python/3.5.0/Python-3.5.0.tgz2[root@node6 python_scripts]#ls3Python-3.5.0.tgz4[root@node6 python_scripts]#tarxvf Python-3.5.0.tgz 5[root@node6 python_scripts]#ls6Python-3.5.0Python-3.5.0.tgz7[root@node6 Python-3.5.0]# cd Python-3.5.0

(4)编译:

1[root@node6 Python-3.5.0]# ./configure --prefix=/usr/local/python3.52[root@node6 Python-3.5.0]#make3[root@node6 Python-3.5.0]#makeinstall4[root@node6 Python-3.5.0]mv/usr/bin/python /usr/bin/python_bak5[root@node6 Python-3.5.0]ln-s /usr/local/python3.5/bin/python3.5/usr/bin/python

(5)此时执行phthon可以看到3.5已经运行:

1[root@node6 python_scripts]# python2Python3.5.0(default, Jul272016,09:34:49) 3[GCC4.8.520150623(Red Hat4.8.5-4)] on linux4Type"help","copyright","credits"or"license"formore information.5>>>

(6) 此时yum的运行会报错,如下操作可以恢复yum:

修改yum文件

1、cd /usr/bin2、ls-lyum*

会显示出“yum、yum-builddep、yum-config-manager、yum-debug-dump、yum-debug-restore、yumdownloader、yum-groups-manager”这7个yum开头的文件,这7个文件都是脚本文件,其第一行为:

#!/usr/bin/python

#!/usr/bin/python -tt

将“python”改为“python2.7”。

我们试着安装一个文件:

[root@vnode33 bin]# yum install tcpreplay

发现系统仍然报错:

Is this ok [y/d/N]: y

Downloading packages:

  File "/usr/libexec/urlgrabber-ext-down", line28    except OSError, e:

                  ^SyntaxError: invalid syntax

找到该文件[root@vnode33 libexec]# vi /usr/libexec/urlgrabber-ext-down

修改/usr/bin/python为/usr/bin/python2.7

可以安装成功了:

Is this ok [y/d/N]: y

Downloading packages:

tcpreplay-4.1.1-1.el7.x86_64.rpm                                                                                                                |298kB00:00:00   

Running transaction check

Running transaction test

Transaction test succeeded

Running transaction

  Installing : tcpreplay-4.1.1-1.el7.x86_641/1

  Verifying  : tcpreplay-4.1.1-1.el7.x86_641/1

Installed:

  tcpreplay.x86_64 0:4.1.1-1.el7                                                                                                                                     

Complete!

 或者也可以用以下的方法:

./configure --prefix=/opt/python    #因为centos自带python,为了不影响原有系统,我这里是另外安装到新目录makeinstall  进行安装ln-s /opt/python/bin/python3.4/usr/bin/python3  #软连接到系统path所指向的一个目录中,使之成为系统命令ln-s /opt/python/bin/pip3.4/usr/bin/pip3ln-s /opt/python/bin/easy_install-3.4/usr/bin/easy_install3


(二)安装pip3:

(1)首先下载,安装依赖setuptools

wget--no-check-certificate  https://pypi.python.org/packages/source/s/setuptools/setuptools-19.6.tar.gz#md5=c607dd118eae682c44ed146367a17e26tar-zxvf setuptools-19.6.tar.gz

cd setuptools-19.6.tar.gz

python3 setup.py build

python3 setup.py install

(2)安装pip3

1wget--no-check-certificate https://pypi.python.org/packages/source/p/pip/pip-8.0.2.tar.gz#md5=3a73c4188f8dbad6a1e6f6d44d117eeb2tar-zxvf pip-8.0.2.tar.gz3cd pip-8.0.24python3 setup.py build5python3 setup.pyinstall

安装完成之后我们再来查看python3.5的bin目录下都有什么东西:

1[root@vnode33 usr]# cd /usr/local/python3.5/bin/2[root@vnode33 bin]#ls32to3      easy_install      idle3    pip  pip3.5pydoc3.5python3.5python3.5m        python3-config  pyvenv-3.542to3-3.5easy_install-3.5idle3.5pip3  pydoc3  python3  python3.5-config  python3.5m-config  pyvenv

为pip3创建链接:

[root@vnode33 bin]#ln-s /usr/local/python3.5/bin/pip3 /usr/bin/pip

现在可以用了:

[root@vnode33 bin]# pip

Usage: 

  pip [options]

Commands:

  install                    Install packages.

  download                    Download packages.

  uninstall                  Uninstall packages.

  freeze                      Output installed packages in requirements format.

  list                        List installed packages.

  show                        Show information about installed packages.

  search                      Search PyPI for packages.

  wheel                      Build wheels from your requirements.

  hash                        Compute hashes of package archives.

  help                        Show help for commands.

...


(3)安装Twisted

Linux上设置https proxy并安装:

本机因从网络下载包时需要代理,故需要如下命令:

1export https_proxy=135.251.33.31:80802export http_proxy=135.251.33.31:80803export ftp_proxy=135.251.33.31:8080

然后下载安装:

1wgethttps://pypi.python.org/packages/source/T/Twisted/Twisted-15.2.1.tar.bz22tar-xjvf Twisted-15.2.1.tar.bz23cd Twisted-15.2.1/4python setup.pyinstall

检查是否安装成功:

1[root@vnode33 ~]# python2Python3.5.0(default, Feb162017,12:30:39) 3[GCC4.8.520150623(Red Hat4.8.5-4)] on linux4Type"help","copyright","credits"or"license"formore information.5>>> import twisted6>>>


(4)安装Scrapy

pipinstallScrapy

这个时候安装成功了,但是运行scrapy时报错

再重新安装下Twisted最新的版本:

1wgethttps://twistedmatrix.com/Releases/Twisted/17.1/Twisted-17.1.0.tar.bz22tar-xjvf Twisted-17.1.0.tar.bz23cd Twisted-17.1.0/4python setup.pyinstall

再运行scrapy发现已经好了:

[root@vnode33 bin]# ./scrapy

Scrapy 1.3.2- no active project

Usage:

  scrapy [options] [args]

Available commands:

  bench        Run quick benchmark test

  commands     

  fetch        Fetch a URL using the Scrapy downloader

  genspider    Generate new spider using pre-defined templates

  runspider    Run a self-contained spider (without creating a project)

  settings      Get settings values

  shell        Interactive scraping console

  startproject  Create new project

  version      Print Scrapy version

  view          Open URL in browser, as seen by Scrapy

  [ more ]      More commands available when run from project directory

Use "scrapy -h"to seemoreinfoabout a command

还需要做一个软链接让scrapy命令全局可用:

ln-s /usr/local/python3.5/bin/scrapy /usr/bin/scrapy

试试在Python中导入scrapy:

1Python3.5.0(default, Feb162017,12:30:39) 2[GCC4.8.520150623(Red Hat4.8.5-4)] on linux3Type"help","copyright","credits"or"license"formore information.4>>> from scrapy.spider import BaseSpider5__main__:1: ScrapyDeprecationWarning: Module `scrapy.spider` is deprecated, use `scrapy.spiders` instead6>>> from scrapy.spiders import BaseSpider


安装scrapy过程中有三步不确定是否需要,附录如下:

1,libxml2

wgetftp://xmlsoft.org/libxml2/libxml2-git-snapshot.tar.gztar-zxvf libxml2-git-snapshot.tar.gz

cd libxml2-2.9.2/./configuremakemakeinstall

2,libxlst

wgethttp://xmlsoft.org/sources/libxslt-1.1.28.tar.gztar-zxvf libxslt-1.1.28.tar.gz

cd libxslt-1.1.28/./configuremakemakeinstall

3,cryptography

wgetftp://sourceware.org/pub/libffi/libffi-3.2.1.tar.gztar-zxvf libffi-3.2.1.tar.gz

cd libffi-3.2.1./configuremakemakeinstall

export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH

wgetftp://sourceware.org/pub/libffi/libffi-3.2.1.tar.gztar-zxvf libffi-3.2.1.tar.gz

cd libffi-3.2.1./configuremakemakeinstall


Windows7下安装scrapy:

先下载python-3.5.2.exe 双击文件安装成功:

然后直接安装scrapy,找到pip文件的目录:

cd C:\Users\xxx\AppData\Local\Programs\Python\Python35-32\Scripts

pipinstallscrapy

安装成功后测试下:

C:\Users\xxx>python

Python 3.5.2(v3.5.2:4def2a2901a5, Jun252016,22:01:18) [MSC v.190032 bit (In

tel)] on win32

Type "help","copyright","credits"or"license"formore information.>>> from scrapy.spiders import BaseSpider>>> exit()


(三)IDLE支持方向键:

(1)安装readline

pipinstallreadline

但是有如下报错:

gcc: error: readline/libreadline.a: No suchfileor directory

解决方法:

yuminstallreadline-develyuminstallpatch

再重新configure、make、makeinstallpython3.5


出处:https://www.cnblogs.com/z-joshua/p/5710698.html

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容