1. 下载setuptools及pip的源码包
	setuptools与pip都是python的模块
	setuptools源码包: https://pypi.python.org/pypi/setuptools
	pip源码包: https://pypi.python.org/pypi/pip#downloads
2. 安装setuptools与pip
目前下载的版本是setuptools-12.0.5.tar.gz与pip-6.0.6.tar.gz
用tar命令解压, 格式:tar -xzvf xxxx.tar.gz
先安装setuptools, 进行setuptools的源码根目录下, 执行以下命令进行setuptools模块的安装:
  1. # python setup.py install
安装完setuptools后, 接着安装pip, 进入pip的源码包根目录下, 执行以下命令进行安装:
  1. # python setup.py build
  2. # python setup.py install
安装完pip后. 看看pip都安装在哪里. 执行以下命令:
  1. # whereis pip
然后再执行 # pip  命令并回车, 如果无法用pip命令, 则可通过创建pip软链接, 执行以下命令:
  1. # ln -s /usr/local/bin/pip /usr/bin/pip
好啦, 检测pip命令是否正常:
  1. # pip
  2. Usage:
  3. pip <command> [options]
  4. Commands:
  5. install                     Install packages.
  6. uninstall                   Uninstall packages.
  7. freeze                      Output installed packages in requirements format.
  8. list                        List installed packages.
  9. show                        Show information about installed packages.
  10. search                      Search PyPI for packages.
  11. wheel                       Build wheels from your requirements.
  12. zip                         DEPRECATED. Zip individual packages.
  13. unzip                       DEPRECATED. Unzip individual packages.
  14. help                        Show help for commands.
  15. General Options:
  16. -h, --help                  Show help.
  17. --isolated                  Run pip in an isolated mode, ignoring
  18. environment variables and user configuration.
  19. -v, --verbose               Give more output. Option is additive, and can be
  20. used up to 3 times.
  21. -V, --version               Show version and exit.
  22. -q, --quiet                 Give less output.
  23. --log <path>                Path to a verbose appending log.
  24. --proxy <proxy>             Specify a proxy in the form
  25. [user:passwd@]proxy.server:port.
  26. --retries <retries>         Maximum number of retries each connection should
  27. attempt (default 5 times).
  28. --timeout <sec>             Set the socket timeout (default 15 seconds).
  29. --exists-action <action>    Default action when a path already exists:
  30. (s)witch, (i)gnore, (w)ipe, (b)ackup.
  31. --trusted-host <hostname>   Mark this host as trusted, even though it does
  32. not have valid or any HTTPS.
  33. --cert <path>               Path to alternate CA bundle.
  34. --client-cert <path>        Path to SSL client certificate, a single file
  35. containing the private key and the certificate
  36. in PEM format.
  37. --cache-dir <dir>           Store the cache data in <dir>.
  38. --no-cache-dir              Disable the cache.
  39. --disable-pip-version-check
  40. Don't periodically check PyPI to determine
  41. whether a new version of pip is available for
  42. download. Implied with --no-index.
如果不创建软链接, 也可以直接使用pip的路径来执行命令也是可以的, 如下:
  1. # /usr/local/bin/pip
  2. Usage:
  3. pip <command> [options]
  4. Commands:
  5. install                     Install packages.
  6. uninstall                   Uninstall packages.
  7. freeze                      Output installed packages in requirements format.
  8. list                        List installed packages.
  9. show                        Show information about installed packages.
  10. search                      Search PyPI for packages.
  11. wheel                       Build wheels from your requirements.
  12. zip                         DEPRECATED. Zip individual packages.
  13. unzip                       DEPRECATED. Unzip individual packages.
  14. help                        Show help for commands.
  15. General Options:
  16. -h, --help                  Show help.
  17. --isolated                  Run pip in an isolated mode, ignoring
  18. environment variables and user configuration.
  19. -v, --verbose               Give more output. Option is additive, and can be
  20. used up to 3 times.
  21. -V, --version               Show version and exit.
  22. -q, --quiet                 Give less output.
  23. --log <path>                Path to a verbose appending log.
  24. --proxy <proxy>             Specify a proxy in the form
  25. [user:passwd@]proxy.server:port.
  26. --retries <retries>         Maximum number of retries each connection should
  27. attempt (default 5 times).
  28. --timeout <sec>             Set the socket timeout (default 15 seconds).
  29. --exists-action <action>    Default action when a path already exists:
  30. (s)witch, (i)gnore, (w)ipe, (b)ackup.
  31. --trusted-host <hostname>   Mark this host as trusted, even though it does
  32. not have valid or any HTTPS.
  33. --cert <path>               Path to alternate CA bundle.
  34. --client-cert <path>        Path to SSL client certificate, a single file
  35. containing the private key and the certificate
  36. in PEM format.
  37. --cache-dir <dir>           Store the cache data in <dir>.
  38. --no-cache-dir              Disable the cache.
  39. --disable-pip-version-check
  40. Don't periodically check PyPI to determine
  41. whether a new version of pip is available for
  42. download. Implied with --no-index.
如果运气不好, 出现如下信息:
  1. ImportError: No module named 'pip._vendor.requests'
这是因为openssl模块没安装好, 可执行以下命令来安装:
  1. # yum install openssl-devel
  
  
OK, Enjoy it!!!

centos6下从源码安装setuptools和pip的更多相关文章

  1. Centos6.6上源码安装Nodejs V4版本

    本来就是想在vps上装一个Ghost博客,这个博客依赖的是Nodejs,然后推荐的是V4版本.然后我就对着官网的步骤安装,发现根本没有Centos6 i386的资源了(64位的还是有的), 我只能在那 ...

  2. RedHat7下PostGIS源码安装

    本文介绍在RedHat7环境下安装使用PostGIS的流程. 1. PostgreSQL 1.1 yum安装PostgreSQL 这个比较简单,直接使用yum安装即可. $ sudo yum inst ...

  3. debian下如何源码安装tmux

    一.源码安装ncurses库 1.1 获取源码 wget https://invisible-island.net/datafiles/release/ncurses.tar.gz tar xvf n ...

  4. Cenos(6.6/7.1)下从源码安装Python+Django+uwsgi+nginx到写nginx的环境部署(一)

    梳理下这几个的关系: centos是redhat的社区版操作系统. Python2.7.5是开发语言(centos6.5下自带的python是2.6.6版本,所以需要源码更新,而centos7.1下面 ...

  5. Linux(CentOS或RadHat)下MySQL源码安装

    安装环境: CentOS6.3 64位 软件: Mysql-5.6 所需包: gcc/g++ :MySQL 5.6开始,需要使用g++进行编译.cmake  :MySQL 5.5开始,使用cmake进 ...

  6. linux下如何源码安装expect

    1.作用 自动交互.比如如果用ssh登陆服务器,每次都输入密码,然而你觉得麻烦,那你就可以使用expect来做自动交互,这样的话就不用每次都输入密码 2.依赖 依赖tcl 3.获取源码 wget ht ...

  7. Windows下sklearn源码安装

    简介 在Windows下编译sklearn源码,主要注意二点: 编译环境的搭建 编译顺序 编译环境的搭建 如果环境没有搭建好,最常见的报错,就是"error: Unable to find ...

  8. centos下kong源码安装

    参考资料: https://docs.konghq.com/install/source/ 环境准备:操作系统 centeros7.3 1 :openssl和pcre一般系统自带,如果没有可自己安装  ...

  9. Ubuntu 14.04下从源码安装qt4.x

    转自:http://www.cnblogs.com/crazywangzx/p/3505293.html 1.到官网http://qt-project.org/downloads或者ftp://ftp ...

随机推荐

  1. 如何用vue实现树形菜单?

    在公司培训了2周,布置的作业是从树形,grid分页以及echarts中选一个.由于都不是很熟,就挑了第一个.本来想在网上找找参考,然后模仿着做一个,但是网上的代码多少参差不齐,写到一半没了,所以只要自 ...

  2. Linux Server release 7.3 更换阿里网络yum源

    查看当前系统下的yum源 [root@localhost ~]# rpm -qa |grep yum yum-3.4.3-150.el7.noarch yum-utils-1.1.31-40.el7. ...

  3. tomcat三种启动不同的启动方式

    Linux下tomcat服务的启动.关闭与错误跟踪,通常通过以下几种方式启动关闭tomcat服务: 切换到tomcat主目录下的bin目录 1. 启动tomcat服务 方式一:直接启动 ./start ...

  4. Linux安装mysql 在/etc下没有my.cnf 解决办法

    进入 /usr/share/mysql  将my-medium.cnf 移动到etc 并且改名为my.cnf

  5. (1-1)SpringCloud-Eureka:服务的注册与发现

    SpringCloud Eureka是SpringCloud Netflix服务套件中的一部分,它基于Netflix Eureka做了二次封装,主要负责完成微服务架构中的服务治理功能.下面来做一个示例 ...

  6. C# Linq基本常用用法

    1.什么是Linq? Lanaguage Interated Query(语言集成查询),Linq 是集成C# 和VB这些语言中用于提供数据查询能力的一个新特性. 这里只介绍两种基本常用用法. 学习方 ...

  7. zabbix3.2_yum官方文档centos 7版

    Installation from packages 1 Repository installation 2 Server installation with MySQL database 3 Ser ...

  8. 浅谈TreeMap以及在java中的使用

    treemap结构是红黑树 1.先介绍一下平衡二叉树 其特点是一棵空树或它的左右两个子树的高度差的绝对值不超过1,并且左右两个子树都是一棵平衡二叉树.也就是说该二叉树的任何一个子节点,其左右子树的高度 ...

  9. MySQL--如何快速对比数据

    在MySQL运维中,研发同事想对比下两个不同实例上的数据并找出差异,除主键外还需要对比每一个字段,如何做呢? 第一种方案,写程序将两个实例上的每一行数据取出来进行对比,理论可行,但是对比时间较长. 第 ...

  10. strcpy和memcpy

    切记,memcpy的头文件是memory.hstrcpy和memcpy主要有以下3方面的区别.1.复制的内容不同.strcpy只能复制字符串,而memcpy可以复制任意内容,例如字符数组.整型.结构体 ...