That's what I got in julia, I put the so lib in /usr/lib/
The linux app qwtw is working properly.



julia> using qwtwplot
ERROR: LoadError: KeyError: key "ALLUSERSPROFILE" not found
 in access_env(::Base.##339#340, ::String) at ./env.jl:45
 in getindex(::Base.EnvHash, ::String) at ./env.jl:73
 in include_from_node1(::String) at ./loading.jl:426
 in eval(::Module, ::Any) at ./boot.jl:234
 in require(::Symbol) at ./loading.jl:357
while loading /home/pi/.julia/v0.5/qwtwplot/src/qwtwplot.jl, in expression 
starting on line 4

julia> Pkg.clone("https://github.com/ig-or/qwtwplot";)
INFO: Cloning qwtwplot from https://github.com/ig-or/qwtwplot
ERROR: qwtwplot already exists
 in clone(::String, ::SubString{String}) at ./pkg/entry.jl:193
 in clone(::String) at ./pkg/entry.jl:221
 in 
(::Base.Pkg.Dir.##2#3{Array{Any,1},Base.Pkg.Entry.#clone,Tuple{String}})() 
at ./pkg/dir.jl:31
 in 
cd(::Base.Pkg.Dir.##2#3{Array{Any,1},Base.Pkg.Entry.#clone,Tuple{String}}, 
::String) at ./file.jl:59
 in #cd#1(::Array{Any,1}, ::Function, ::Function, ::String, 
::Vararg{Any,N}) at ./pkg/dir.jl:31
 in clone(::String) at ./pkg/pkg.jl:151

julia> Pkg.checkout("qwtwplot")
INFO: Checking out qwtwplot master...
INFO: Pulling qwtwplot latest master...
INFO: No packages to install, update or remove

julia> using qwtwplot

julia> using qwtwplot

julia> qwtwStart() # start 'qwtwc' library
ERROR: UndefVarError: qwtwStart not defined

julia> # draw thin blue 'sinus':
       tMax = 10.
10.0

julia> t = Array(linspace(0.,tMax, 10000));

julia> n = length(t)
10000

julia> y = sin(t);

julia> qfigure(1); # "1" the number of the first plot window
ERROR: UndefVarError: qfigure not defined

julia> # parameters: 'x' and 'y' data vectors, then 'name of this line', 
then 'style description', then 'line width'
       qplot(t, y, "blue line", "-b", 1)
ERROR: UndefVarError: qplot not defined

julia> 


Le jeudi 25 août 2016 12:01:30 UTC+2, Igor a écrit :
>
> Hello! 
> I made another 2D plotting library for Julia. Please try to test it if you 
> have some free time. Current version works only for Windows7 x64, but I'm 
> planning to make everything work for Fedora Linux also. 
>
> It is located here: https://github.com/ig-or/qwtwplot
> you'll have to read its description before the installation. 
>
> It is based on underlying "C" library, which I used to use for data 
> analysis for many years, but now I tried to make a Julia package out of it. 
> I'm new to github, so your comments will be very appreciated. 
>
> Best regards, Igor
>
>
>
>
>
>
>
>

Reply via email to