0

我正在使用 tkcalendar 小部件在 Python 中制作日历。

这是我的代码:

import tkinter as tk
from tkinter import ttk
import tkcalendar

def print_sel():
    date = cal.selection_get()
    root.destroy()

def quit1():
    root.destroy()


root = tk.Tk()
cal = tkcalendar.Calendar(root, font="Arial 11", selectmode='day',
                            year=2016, month=1, day=1)
cal.pack()
ttk.Button(root, text="Confirm", command=print_sel).pack(side="left", fill="both", expand=True)
ttk.Button(root, text="Back", command=quit1).pack(side="left", fill="both", expand=True)
date = ''
root.mainloop()

我的问题是,上面的代码在 Jupyter notebook 中运行时运行良好,但在转换并作为 .py 文件运行时。我收到此错误:

import tkcalendar
ModuleNotFoundError: No module named 'tkcalendar'

当我 pip install tkcalendar 我得到:

Requirement already satisfied: tkcalendar in...

Requirement already satisfied: pytz>=0a in...

Requirement already satisfied: babel in...
4

1 回答 1

1

第一个建议:您应该检查 PYTHON 安装路径的位置,然后从该目录转到 cmd -> 并键入:pip installs tkcalendar。如果安装成功,那么问题出在您选择运行脚本的解释器上。

无论如何,根据您的问题描述,它会查看您的解释器选择您的脚本在哪里运行,所以首先尝试这个。

谢谢..享受编码。

于 2020-01-24T09:38:34.333 回答