I have the version Julia version-1.1.0 , 64-bit installed on a Win10. I have been trying to install the package BEZIER. I tried
1)‘using Pkg’ then 'Pkg.add(“Bezier”).
2)import pkg;Pkg.add(“Bezier”).
I checked online and the package BEZIER is listed as available in this version on JULIA but everytime I try to import/install it, its not found. How Can I install the BEZIER PACKAGE?
Try installing directly from the url:
julia> using Pkg
julia> Pkg.add(PackageSpec(url="https://github.com/arlk/Bezier.jl"))
3 Likes
It worked perfectly. Thankyou