gpt4 book ai didi

python - 我如何要求 Tkinter 与 distutils?

转载 作者:太空宇宙 更新时间:2023-11-03 12:06:18 24 4
gpt4 key购买 nike

我正在尝试使用 distutils 编译程序,但我想确保用户在安装我的包之前安装了 Tkinter。

我的 Google 搜索没有找到任何有用的信息,有什么线索吗?

谢谢,韦恩

最佳答案

您可以拥有一个继承自 install 的类,然后执行此操作:

from distutils.command.install import install

class Install(install):
def run(self):
if not check_dependencies():
# Tkinter was not installed, handle this here
install.run(self) # proceed with the installation

def check_dependencies():
try:
return __import__('Tkinter')
except ImportError:
return None

关于python - 我如何要求 Tkinter 与 distutils?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31085462/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com