美文网首页
python 源码安装

python 源码安装

作者: 微嗔 | 来源:发表于2017-03-19 13:09 被阅读1111次

    一、linux系统下python解释器的安装


    python 源码包下载地址:https://www.python.org/ftp/python/

    1. wget   https://www.python.org/ftp/python/2.7.13/Python-2.7.13.tar.xz

    2. tar -zxvf Python-2.7.13.tar.xz && cd Python-2.7.13

    3.  ./configure --prefix=$prefix/python27

    4.  make -j8 && make install

    二、python第三方模块的安装


    1. setuptools的安装

    1. 下载setuptools的源码包(注意:版本不能选择太高)

    源码包地址:wget https://github.com/pypa/setuptools/archive/13.0.2.tar.gz

    2.  tar -zxvf 13.0.2.tar.gz && cd setuptools-13.0.2

    3.  python setup.py install

    4.  安装完成后,我们就可以愉快的使用easy_install安装模块了

    2. pip的安装

    1.  下载pip的源码包

    源码包地址:http://pypi.python.org/packages/source/p/pip/pip-1.0.tar.gz

    2.  tar -zxvf pip-1.0.tar.gz && pip-1.0

    3.  python setup.py install

    4. pip安装完成后,我们就可以使用pip安转其它模块了

    3. 通过pip安装模块

    1. 修改pip的源仓库,修改~/.pip/pip.conf 

    [global]

    index-url=http://pypi.mirrors.ustc.edu.cn/simple

    trusted-host=pypi.mirrors.ustc.edu.cn

    disable-pip-version-check=true

    timeout=120

    2. 手动指定源仓库,比如:

    pip install  -i http://pypi.douban.com/simple redis

    pip install -i http://pypi.douban.com/simple Flask

    pip install -i http://pypi.douban.com/simple pycurl

    pip install -i http://pypi.douban.com/simple mysql-python

    pip install -i http://pypi.douban.com/simple bottle

    相关文章

      网友评论

          本文标题:python 源码安装

          本文链接:https://www.haomeiwen.com/subject/vqmmnttx.html