i am running Julia on Linux and want to build a GUI with TK.
For this i have downloaded the bindings from github. file TK.jl-master
Where to copy this folder in ?
Julia cannot find TK until i copy it in the right folder. suppose the Julia folder in linux.
How to build TK in Julia then.
In general i want to ask what kind of GUI libraries Julia has actually ?
Manual package management (downloading from github and place into the correct folder) should not be needed. Actually you should be able to use the Pkg.add commands from the julia REPL. So in this case Pkg.add(‘Tk’) should download and install (and build) the package.
I don’t have the full overview, but Gtk is available and there is some work on using Qt. Maybe you look into https://pkg.julialang.org/ for available packages.
QML (i.e. the “modern” Qt way, using a javascript-like language for the GUI layout itself) is supported through QML.jl and it should be mature enough to build a proper GUI quite painlessly. Some of the interfacing with Julia may change in the future though, to use Observables.jl.
Compiling takes a longer time.
Message appear such the above code ! Could not import Base.text.
And the Tk Window only appears for 1 seconds and flows away.
How to fix that in the code.
I want to make a Main Window that stays right long on screen.