No plot ! Why ?
Win7
in file start.bat is:
C:\Users\PC\AppData\Local\Julia-0.7.0\bin\julia.exe -L start.jl
in start.jl file is:
println("Pracujesz w aktalogu: ",pwd())
include("display_plot.jl")
display_plot.jl:
using Plots
println("package Plots imported")
display(plot(rand(5)))
println("plot where?")
REPL show"
D:\pawel\rynek\dzienniki\Dzienniki_2020>C:\Users\PC\AppData\Local\Julia-0.7.0\bin\julia.exe -L start.jl
Pracujesz w aktalogu: D:\pawel\rynek\dzienniki\Dzienniki_2020
package Plots imported
Plot{Plots.GRBackend() n=1}plot where?
_
_ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: https://docs.julialang.org
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.7.0 (2018-08-08 06:46 UTC)
_/ |\__'_|_|_|\__'_| | Official http://julialang.org/ release
|__/ | x86_64-w64-mingw32
No plot !!! Why ?
If typing in REPL :
julia> include("display_plot.jl")
package Plots imported
plot where?
Plot IS DISPLAYED
What wrong in file *start.bat and start.jl ?
Paul