I try to get an executable with PyInstaller (v4.5) but I get the following error message:
pkg_resources.DistributionNotFound: The 'jsonschema' distribution was not found and is required by the application
Similar to this issue on Stackoverflow
My code is just a test-code:
import pandas
import tkinter as tk
root = tk.Tk()
root.mainloop()
The issue is somehow related to the pandas library. Can anybody help with this issue?