码迷,mamicode.com
首页 > 编程语言 > 详细

linux 安装 python3

时间:2018-11-16 21:03:46      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:ble   code   make   lang   crypto   环境   must   ssl   ln -s   

linux 安装 python3

软件源

  1. 下载软件
    mkdir -p /soft 
    cd /soft 
    wget https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tgz
    yum install sqlite-devel
  2. 安装
    tar xf Python-3.6.6.tgz
    cd Python-3.6.6
    mkdir -p /usr/local/python3
    ./configure --prefix=/usr/local/python3
    make && make install
  3. 配置环境变量

    ln -s /usr/local/python3/bin/python3 /usr/bin/python3
    vim ~/.bash_profile
    PATH=$PATH:$HOME/bin:/usr/local/python3/bin
    source ~/.bash_profile
  4. ssl相关

python在使用时,可能会使用ssl模块。所以在编译时,可以直接将ssl模块编译进去。

yum install openssl
yum install openssl-devel -y
cd Python-3.6.6
vi Modules/Setup #修改文件如下

    # Socket module helper for socket(2)
    _socket socketmodule.c

    # Socket module helper for SSL support; you must comment out the other
    # socket line above, and possibly edit the SSL variable:
    SSL=/usr/local/ssl
    _ssl _ssl.c         -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl         -L$(SSL)/lib -lssl -lcrypto

然后进行编译安装即可

linux 安装 python3

标签:ble   code   make   lang   crypto   环境   must   ssl   ln -s   

原文地址:http://blog.51cto.com/13649299878/2318101

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!