zoukankan      html  css  js  c++  java
  • (转)输入pipt提示:AttributeError: 'module' object has no attribute 'HTTPSConnection'

    文章转自:http://write.blog.csdn.net/postedit/51725016

    1.测试

    [root@s011805161450 ~]# python

    Python 2.7.8 (default, Jun 17 2016, 01:25:39) 
    [GCC 4.4.7 20120313 (Red Hat 4.4.7-17)] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import ssl
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "/usr/local/lib/python2.7/ssl.py", line 60, in <module>
        import _ssl             # if we can't import it, let the error propagate

    ImportError: No module named _ssl

    2.查看

    [root@s011805161450 ~]# yum list installed | grep ssl
    openssl.x86_64          1.0.0-27.el6    @anaconda-CentOS-201303020151.x86_64/6.4

    3.安装

    [root@s011805161450 ~]# yum install openssl-devel -y

    4.查看结果

    [root@s011805161450 ~]# rpm -aq|grep openssl
    openssl-1.0.1e-48.el6_8.1.x86_64
    openssl-devel-1.0.1e-48.el6_8.1.x86_64

    5.重新编译python

    #修改Setup文件
    vi /usr/software/Python-2.7.5/Modules/Setup
    #修改结果如下:
    # Socket module helper for socket(2)
    _socket socketmodule.c timemodule.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

    6.重新编译

    make
    make install

    7.测试结果

    [root@s011805161450 ~]# python
    Python 2.7.8 (default, Jun 21 2016, 17:51:18) 
    [GCC 4.4.7 20120313 (Red Hat 4.4.7-17)] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import _ssl
    >>> exit()

  • 相关阅读:
    7.20 高博教育 方法
    7.20 高博教育 随机数字(练习)
    7.17 高博教育 流程控制02
    7月17号 高博教育 复习加逻辑运算符
    7月16号 高博教育 知识扩展
    7月16号 高博教育 知识点总结
    7月16号 高博教育 数据运算符和比较运算符
    链式线性表——课上练
    顺序线性表——课上练
    链栈——课上练
  • 原文地址:https://www.cnblogs.com/Gnnnny/p/9185126.html
Copyright © 2011-2022 走看看