繁体   English   中英

python 不使用 tkinter 8.6 与 Mac 上的自制软件一起安装

[英]python not using tkinter 8.6 installed with homebrew on Mac

我在 Mac OS 10.15.7 (Catalina) 上使用 python 3.9.1。 Python 安装了自制软件。 当我导入 tkinter 时,我得到版本 8.5.9,而我想要版本 8.6。

brew info tcl-tk给出

tcl-tk: stable 8.6.10 (bottled) [keg-only]
Tool Command Language
https://www.tcl-lang.org
/usr/local/Cellar/tcl-tk/8.6.10 (3,022 files, 50.9MB)
  Poured from bottle on 2020-03-10 at 17:57:25
From: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/tcl-tk.rb
License: TCL
==> Dependencies
Required: openssl@1.1 ✔
==> Caveats
tcl-tk is keg-only, which means it was not symlinked into /usr/local,
because macOS already provides this software and installing another version in
parallel can cause all kinds of trouble.

If you need to have tcl-tk first in your PATH run:
  echo 'export PATH="/usr/local/opt/tcl-tk/bin:$PATH"' >> /Users/saul/.bash_profile

For compilers to find tcl-tk you may need to set:
  export LDFLAGS="-L/usr/local/opt/tcl-tk/lib"
  export CPPFLAGS="-I/usr/local/opt/tcl-tk/include"

For pkg-config to find tcl-tk you may need to set:
  export PKG_CONFIG_PATH="/usr/local/opt/tcl-tk/lib/pkgconfig"

==> Analytics
install: 362,394 (30 days), 390,184 (90 days), 474,512 (365 days)
install-on-request: 9,609 (30 days), 17,845 (90 days), 60,715 (365 days)
build-error: 0 (30 days)

我将建议的行放在我的bash_profile中,但它们似乎没有任何效果。

>>> import tkinter
>>> tcl = tkinter.Tcl()
>>> print(tcl.call("info", "patchlevel"))
8.5.9

我在网上找到了很多关于这个问题的东西,但似乎都与我不使用的 pyenv 有关,除了上面描述的似乎与我的情况有关的东西之外,我找不到任何东西。

我需要做什么?

编辑

我也尝试将这些行添加到 my.bashrc 文件中,但这没有效果。

显然我的 python 已经过时了。 (我从没想过,因为它是从上个月开始的。)无论如何,

brew update && brew upgrade python@3.9

固定的东西。

Brew 本身提供了 python 3.9 的解决方案。 您只需要安装单独的 package:

brew install python-tk@3.9

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM