kotlin-jupyter
kotlin-jupyter copied to clipboard
Import .kt files
Hi! How import .kt files in jupyter notebook? Example: ./Utils.kt and ./notebook.ipynb, how import Utils.kt to notebook.ipynb.
import Utils.kt
don't work :(
Hi! It's not possible, you can only import compiled files (.class files) and libraries. It's the common limitation for Kotlin scripting.
In theory, it should be possible to import script as text into the cell. Since it is more or less the thing Jupyter interpreter does. But it could be a hell to support. Also a lot of compatibility issues.