V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
nanhuier
V2EX  ›  Python

Pyinstaller 安装报错,有大佬帮忙看看吗?

  •  
  •   nanhuier · 2019-09-18 09:22:41 +08:00 · 5210 次点击
    这是一个创建于 1675 天前的主题,其中的信息可能已经有所发展或是发生改变。
    用的是 py2.7,pip 版本 19.2.3, 使用命令
    pip install pyinstaller
    报错如下:

    Collecting pyinstaller
    Using cached https://files.pythonhosted.org/packages/e2/c9/0b44b2ea87ba36395483a672fddd07e6a9cb2b8d3c4a28d7ae76c7e7e1e5/PyInstaller-3.5.tar.gz
    Installing build dependencies ... error
    ERROR: Command errored out with exit status 1:
    command: 'c:\python27\python.exe' 'c:\python27\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'c:\users\3540004\appdata\local\temp\pip-build-env-gshins\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'setuptools>=40.8.0' wheel
    cwd: None
    Complete output (12 lines):
    Traceback (most recent call last):
    File "c:\python27\lib\runpy.py", line 174, in _run_module_as_main
    "__main__", fname, loader, pkg_name)
    File "c:\python27\lib\runpy.py", line 72, in _run_code
    exec code in run_globals
    File "c:\python27\lib\site-packages\pip\__main__.py", line 16, in <module>
    from pip._internal import main as _main # isort:skip # noqa
    File "c:\python27\lib\site-packages\pip\_internal\__init__.py", line 19, in <module>
    from pip._vendor.urllib3.exceptions import DependencyWarning
    File "c:\python27\lib\site-packages\pip\_vendor\urllib3\__init__.py", line 25, in <module>
    from logging import NullHandler
    ImportError: cannot import name NullHandler
    ----------------------------------------
    ERROR: Command errored out with exit status 1: 'c:\python27\python.exe' 'c:\python27\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'c:\users\3540004\appdata\local\temp\pip-build-env-gshins\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'setuptools>=40.8.0' wheel Check the logs for full command output.

    请问有大佬碰到过吗
    3 条回复    2019-09-18 09:42:25 +08:00
    arrow8899
        1
    arrow8899  
       2019-09-18 09:32:03 +08:00
    https://www.google.com/search?q=cannot+import+name+NullHandler
    善用搜索引擎,第一条就是答案
    delectate
        2
    delectate  
       2019-09-18 09:33:07 +08:00
    The NullHandler is only available on Python version 2.7+. You could create the NullHandler yourself on an ImportError:

    import logging

    try:
    from logging import NullHandler
    except ImportError:
    class NullHandler(logging.Handler):
    def emit(self, record):
    pass

    logging.getLogger(__name__).addHandler(NullHandler())


    https://stackoverflow.com/questions/26939308/importerror-cannot-import-name-nullhandler
    cwjokaka
        3
    cwjokaka  
       2019-09-18 09:42:25 +08:00
    遇到 pip 相关的问题,如果解决不了,我都会重建一个 venv
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5212 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 33ms · UTC 07:38 · PVG 15:38 · LAX 00:38 · JFK 03:38
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.