zoukankan      html  css  js  c++  java
  • ERROR: Command "python setup.py egg_info" python-nss

    [root@localhost ~]# pip install python-nss
    
    DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7.
    Looking in indexes: http://pypi.douban.com/simple
    Collecting python-nss
      Downloading http://pypi.doubanio.com/packages/6b/29/629098e34951c358b1f04f13a70b3590eb0cf2df817d945bd05c4169d71b/python-nss-1.0.1.tar.bz2 (222kB)
         |████████████████████████████████| 225kB 31kB/s 
        ERROR: Complete output from command python setup.py egg_info:
        ERROR: Traceback (most recent call last):
          File "<string>", line 1, in <module>
          File "/tmp/pip-install-JGnrT5/python-nss/setup.py", line 409, in <module>
            sys.exit(main(sys.argv))
          File "/tmp/pip-install-JGnrT5/python-nss/setup.py", line 333, in main
            nss_include_dir  = find_include_dir(['nss3', 'nss'],   ['nss.h',  'pk11pub.h'], include_roots=include_roots)
          File "/tmp/pip-install-JGnrT5/python-nss/setup.py", line 94, in find_include_dir
            raise ValueError("unable to locate include directory containing header files %s" % include_files)
    
        ValueError: unable to locate include directory containing header files ['nss.h', 'pk11pub.h']
    
    ERROR: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-JGnrT5/python-nss/
    
    
    

    查看错误日志缺少头文件

    进入python-nss官网,写着To build python-nss you the C language header files and libraries for both NSPR and NSS will need to be installed. This is system and distribution specific, as such we cannot give you explicit instructions. On Linux typically these packages are called:

    • nss-devel
    • nspr-devel

    yum install nss-devel -y

    yum install nspr-devel -y

  • 相关阅读:
    多个数字和数字字符串混合运算规则
    关于js对象引用的小例子
    实现函数 isInteger(x) 来判断 x 是否是整数
    写一个少于 80 字符的函数,判断一个字符串是不是回文字符串
    关于数组排序
    事件委托(事件代理)的原理以及优缺点是什么?
    将url的查询参数解析成字典对象
    js dom操作获取节点的一些方法
    js中arguments的应用
    深度克隆---js对象引用
  • 原文地址:https://www.cnblogs.com/mrwuzs/p/10879458.html
Copyright © 2011-2022 走看看