Mac更新python3.12 解决pip3安装报错问题小结
Mac使用homebrew更新了python3.12,删除了以前的版本和pip3安装软件时候报错。
error: externally-managed-environment
× This environment is externally managed
╰─> To install Python packages system-wide, try brew install
xyz, where xyz is the package you are trying to
install.
If you wish to install a non-brew-packaged Python package,
create a virtual environment using python3 -m venv path/to/venv.
Then use path/to/venv/bin/python and path/to/venv/bin/pip.
If you wish to install a non-brew packaged Python application,
it may be easiest to use pipx install xyz, which will manage a
virtual environment for you. Make sure you have pipx installed.note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
hint: See PEP 668 for the detailed specification.
看了很多人说要删除EXTERNALLY-MANAGED这个文件。
在Mac系统里,这个文件藏在这里,删除即可。
/usr/local/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12
到此这篇关于Mac更新python3.12 解决pip3安装报错的文章就介绍到这了,更多相关python3.12 解决pip3安装报错内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
python GUI库图形界面开发之PyQt5计数器控件QSpinBox详细使用方法与实例
这篇文章主要介绍了python GUI库图形界面开发之PyQt5计数器控件QSpinBox详细使用方法与实例,需要的朋友可以参考下2020-02-02Python的Django框架中TEMPLATES项的设置教程
这篇文章主要介绍了Python的Django框架中TEMPLATES项的设置教程,主要针对Django1.8后的新特性,需要的朋友可以参考下2015-05-05Python数据可视化实践之使用Matplotlib绘制图表
数据可视化是数据分析的重要环节,通过将数据转化为图形,可以更直观地展示数据特征和规律。Python中的Matplotlib库是一个强大的数据可视化工具,本文将带您了解Matplotlib的基本使用方法,以及如何绘制常见的图表2023-05-05
最新评论