Mac安装pyqt5

新机:Apple M1 Pro芯片

1、安装Homebrew

1.下载安装脚本并安装
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

2.配置环境比变量

替换路径中的UserName为自己的用户名。

echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/UserName/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"

2、更换brew源

参考:https://blog.csdn.net/H_WeiC/article/details/107857302

#查看当前源
cd "$(brew --repo)" && git remote -v
cd "$(brew --repo homebrew/core)" && git remote -v

#切换为中科大
#替换brew.git:
cd "$(brew --repo)" && git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
#替换homebrew-core.git:
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" && git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
#替换homebrew-cask.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-cask" && git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git
#zsh 替换homebrew-bottles镜像,Mac OS在10.15系统开始,默认的shell都换成了zsh
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.zshrc
#修改使其立即生效
source ~/.zshrc
#bash 替换homebrew-bottles镜像
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
#修改使其立即生效
source ~/.bash_profile
#刷新源
brew update

3、安装依赖

brew install sip
brew install pyqt

4、下载安装qt(可能有用)

下载dmg文件并安装。可能有用。好像还需要配置环境变量,没做。网址:https://download.qt.io/archive/qt/

5、使用

import PyQt5

如无报错则安装正确

6、副作用

安装后可能会改变python3编译器的位置,改为homebrew的位置,而不是自带的python3。因此其以前安装的包可能要重新安装。

你可能感兴趣的:(Mac,Python,macos,qt,github)