Mac电脑python环境搭建

打印 上一主题 下一主题

主题 969|帖子 969|积分 2907

一、Mac系统python系统的版本差异

1.1 python2.7版本

mac操作系统是自带了有python2.7这个版本的,但是它没有idle、pythonLauncher以及pip等附带工具,还需要自己去将其下载安装才可以。
使用快捷键Command+空格打开全局搜索按钮输入终端,然后点击结果下面的应用程序选项将其打开就可以进入到下令行
实行如下下令即可:
  1. sudo easy_install pip
复制代码
以上操作就是使用easy_install这个软件和包管理工具,去将符合当前默认python版本的pip工具从镜像源上下载安装好了,安装完成之后可以使用pip -version这个下令来查看能够正常使用。
1.2 python3.x版本

另外一个就是目前最为主流的python3.x版本了,该版本在mac系统上是需要自己去下载安装的。
而它安装时一样平常是已经默认自带pip工具了,假如没有的话就是取消了默认程序和工具的安装操作。
那么这个时间还是通过一样的方法进入到终端下令行窗口,之后使用curl工具访问pypi这个官方网站来下载并安装pip工具。
安装完成之后还需要实行更新下令才能够让其升级到符合当前python3的版本
下令如下所示:
  1. curl https://bootstrap.pypa.io/get-pip.py | python3
  2. pip install --upgrade pip
复制代码
二、Homebrew管理各类软件

在 Mac 上使用 Homebrew,你可以轻松地安装和管理各类软件。
Homebrew 不仅是一个包管理器,更是一个让你通过下令行就能轻松完成安装、更新和管理软件包的神奇工具。接下来,让我们一起看看如何在 Mac 上安装和使用 Homebrew 吧。
首先,打开你的 Mac 终端。你可以在 Spotlight 搜索中输入“终端”来快速找到它,或者从“实用工具”文件夹中打开。
接着,在终端中输入以下下令来安装 Homebrew:
  1. /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
复制代码
这个下令会开始下载并运行 Homebrew 的安装脚本。在安装过程中,可能会要求你输入 Mac 用户密码,按照提示输入即可。
安装软件包:
Homebrew安装的软件包,只需在终端中输入 brew install 下令,
  1. brew install [软件包名称]
复制代码
卸载软件包:
若需卸载通过Homebrew安装的软件包,请使用以下下令:
  1. brew uninstall [软件包名称]
复制代码
brew更新:
  1. brew update
复制代码
三、Matplotlib库安装

使用Homebrew(假如你已经安装了Homebrew)

错误:
  1. brew install matplotlib
复制代码
正确:
  1. brew install python-matplotlib
复制代码

Mac homebrew 安装matplotlib
在Mac上使用Homebrew安装matplotlib是一个相对直接的过程。但是,值得注意的是,matplotlib依靠于一些C语言扩展,这些扩展需要编译安装
因此,在安装matplotlib之前,需要确保你的Mac上安装了Xcode下令行工具,由于它们包含了编译所需的工具(耗时非常长,且容易堕落误)
四、启动虚拟环境


  1. 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 Python library that isn't in Homebrew, use a virtual environment: python3 -m venv path/to/venv source path/to/venv/bin/activate python3 -m pip install xyz If you wish to install a Python application that isn't in Homebrew, it may be easiest to use 'pipx install xyz', which will manage a virtual environment for you. You can install pipx with brew install pipx You may restore the old behavior of pip by passing the '--break-system-packages' flag to pip, or by adding 'break-system-packages = true' to your pip.conf file. The latter will permanently disable this error. If you disable this error, we STRONGLY recommend that you additionally pass the '--user' flag to pip, or set 'user = true' in your pip.conf file. Failure to do this can result in a broken Homebrew installation. Read more about this behavior here: <https://peps.python.org/pep-0668/> 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. [notice] A new release of pip is available: 24.0 -> 24.1.2 [notice] To update, run: python3.12 -m pip install --upgrade pip
复制代码
翻译:
  1. 创建和使用虚拟环境
  2. 虚拟环境是一个独立于系统Python环境的空间,可以在其中安装和管理Python包。
  3. 按照以下步骤创建和使用虚拟环境:
  4. 创建虚拟环境:
  5. bash:python3 -m venv myenv
  6. 这将在当前目录下创建一个名为myenv的虚拟环境。
  7. 激活虚拟环境:
  8. 在 Linux 或 MacOS 上:
  9. bash:source myenv/bin/activate
  10. 在 Windows 上:
  11. bash:myenv\Scripts\activate
  12. 当虚拟环境激活后,终端提示符会显示为(myenv),表示你现在在虚拟环境中工作。
  13. 在虚拟环境中安装Selenium:
  14. 确保在虚拟环境中后,使用普通的pip命令来安装Selenium:
  15. bash:pip install selenium
  16. 每次起虚拟环境 进行跑
复制代码
如何查看Python3的安装环境路径:
  1. which python3
复制代码


创建虚拟环境
  1. python3 -m venv myenv
复制代码
激活虚拟环境
  1. source myenv/bin/activate
复制代码
正常使用PIP
  1. pip3 install matplotlib
复制代码

更新 pip
  1. pip install --upgrade pip
复制代码

验证安装

安装完成后,你可以通过运行以下Python代码来验证matplotlib是否正确安装:
  1. import matplotlib.pyplot as plt
  2. plt.plot([1, 2, 3], [4, 5, 6])
  3. plt.show()
复制代码

前段时间在使用brew upgrade更新python到Python 3.12后,使用pip安装软件时报错:
  1. $ pip3 install virtualenv virtualenvwrapper
  2. error: externally-managed-environment
  3. × This environment is externally managed
  4. ╰─> To install Python packages system-wide, try brew install
  5.     xyz, where xyz is the package you are trying to
  6.     install.
  7.     If you wish to install a non-brew-packaged Python package,
  8.     create a virtual environment using python3 -m venv path/to/venv.
  9.     Then use path/to/venv/bin/python and path/to/venv/bin/pip.
  10.     If you wish to install a non-brew packaged Python application,
  11.     it may be easiest to use pipx install xyz, which will manage a
  12.     virtual environment for you. Make sure you have pipx installed.
  13. 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.
  14. hint: See PEP 668 for the detailed specification.
复制代码
解决办法

最直接的办法就是直接删除这个警告信息,该文件位于
  1. /usr/local/Cellar/python@3.12/3.12.2_1/Frameworks/Python.framework/Versions/3.12/lib/python3.12
复制代码
下,操作如下:
  1. $ mv /usr/local/Cellar/python@3.12/3.12.2_1/Frameworks/Python.framework/Versions/3.12/lib/python3.12/EXTERNALLY-MANAGED /usr/local/Cellar/python@3.12/3.12.2_1/Frameworks/Python.framework/Versions/3.12/lib/python3.12/EXTERNALLY-MANAGED.bak
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

花瓣小跑

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表