I'm trying to use pythonKit in order to run a Pyhton code from swift.
This code works fine:
let sys = Python.import("sys")
sys.path.append("Users/fusic/Desktop/PyrhonTest/PyrhonTest/")
let example = Python.import("main")
button.title = String(example.hello()) ?? ""
Then, I archive my project and run the app's release version. When pythonKit is called, the app crashes. These is the beginning of the report log. Any ideas how to fix this?
