python学习: tkinter/tk
一个可以开发gui的小工具
安装
- 无,python 自带的包
安装 py 3.11.4
用这个版本,可以解决后面的常见报错问题。
pyenv install 3.11.4
基本使用
import tkinter as tk
window = tk.Tk()
label = tk.Label(text="Python rocks!")
label.pack()
window.mainloop()
常见问题1
安装 3.9.1,使用这个版本来运行
$ py hello.py
macOS 11 (1107) or later required, have instead 11 (1106) !
Abort trap: 6
常见问题2
情况类似 https://github.com/actions/setup-python/issues/649
安装 3.11.4 解决这个问题
RuntimeError: tk.h version (8.5) doesn't match libtk.a version (8.6)
升级 tk,否则会有 warning
DEPRECATION WARNING: The system version of Tk is deprecated and may be removed in a future release. Please don't rely on it. Set TK_SILENCE_DEPRECATION=1 to suppress this warning.
brew install tcl-tk
这个警告通常出现在 macOS 上,表明系统自带的 Tk 版本已过时,并可能在未来的 macOS 版本中移除。你可以采取以下几种方式解决这个问题:
### 1. **临时忽略警告**
在运行 Python 脚本前,在终端执行:
```sh
export TK_SILENCE_DEPRECATION=1
python your_script.py
```
或者在代码中设置环境变量:
```python
import os
os.environ['TK_SILENCE_DEPRECATION'] = '1'
```
### 2. **安装最新的 Tk 版本**
可以使用 `brew` 安装最新的 `tcl-tk`,然后让 Python 使用它:
```sh
brew install tcl-tk
```
安装后,在 `~/.zshrc` 或 `~/.bashrc` 中添加:
```sh
export PATH="/opt/homebrew/opt/tcl-tk/bin:$PATH"
export LDFLAGS="-L/opt/homebrew/opt/tcl-tk/lib"
export CPPFLAGS="-I/opt/homebrew/opt/tcl-tk/include"
export PKG_CONFIG_PATH="/opt/homebrew/opt/tcl-tk/lib/pkgconfig"
```
然后重新安装 `python-tk`:
```sh
brew reinstall python
```
### 3. **使用 Conda 或 Pyenv**
如果你使用 `conda` 或 `pyenv`,可以安装 Python 的自带 Tk 版本:
```sh
conda install -c anaconda tk
```
如果你只是想临时解决这个问题,方法 **1** 就足够了。如果你长期使用 `tkinter`,建议使用方法 **2** 进行升级。