首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

【Python】已解决:WARNING: Discarding https:pypi.tuna.tsinghua.edu.cnpackages742b3584369fad8352ed171

Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output...Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output...然而,当你运行pip install lac命令时,出现了上述错误提示。 二、可能出错的原因 导致此错误的原因可能有多种,常见的包括: 版本不兼容:当前Python版本与LAC库的某些版本不兼容。...三、错误代码示例 以下是一个可能导致该错误的代码示例: pip install lac 在执行上述命令时,可能会遇到如下错误提示: WARNING: Discarding https://pypi.tuna.tsinghua.edu.cn...Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output

19410
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    升级python版本和搭建环境

    ModuleNotFoundError: No module named '_contextvars' 由于上面这个错误我需要把我的Python版本从python3.7.2升级到3.7.3。...使用下面的命令导出: pip freeze > requirements.txt 注意一定要在虚拟环境中执行这个命令。 执行之后可以在 requirements.txt 中查看安装的库。...在虚拟环境中输入: python 可以看到 python 版本可以变为 3.7.3 。 然后执行下面命令: pip install -r requirements.txt 来安装之前虚拟环境中的库。...执行下面的命令: pip freeze 查看已经安装的包。如果和 requeirements.txt 文件中的一致证明安装成功。...但是我又遇到了一个新的错误: ERROR: Complete output from command python setup.py egg_info: ERROR: Please specify --

    2K10

    mac 部署python环境

    mysql-python 终端中执行 pip install mysql-python 运气好的的话,直接就成功了,我遇到了一下问题,最终找到了解决方案,原因及解决方案如下,供参考 问题1:mysql_config...████████████████████████████| 110kB 30kB/s      Complete output from command python setup.py egg_info... setup.py egg_info" failed with error code 1 in /private/tmp/pip-build-NP8J3v/mysql-python 解决方法,执行: ln... -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-w6mp1W/mysql-python/setup.py';exec(compile... code 1 in /tmp/pip-build-w6mp1W/mysql-python/ 原因是:一些依赖包没有安装,注意这也是很多实用pip执行安装扩展的时候,常见的错误 apt-get build-dep

    1.6K10
    领券