tanmaykm / JuliaTS.jl

Other
1 stars 2 forks source link

LoadError: ArgumentError: Chrono not found in path #5

Closed femtotrader closed 8 years ago

femtotrader commented 8 years ago

Hello,

I'm trying to run

$ julia test/test_ts.jl

but it raises

ERROR: LoadError: ArgumentError: Chrono not found in path
julia> Pkg.add("Chrono")

doesn't help

ERROR: unknown package Chrono
 in error at /Applications/Julia-0.4.3.app/Contents/Resources/julia/lib/julia/sys.dylib
 [inlined code] from pkg/entry.jl:49
 in anonymous at task.jl:447
 in sync_end at /Applications/Julia-0.4.3.app/Contents/Resources/julia/lib/julia/sys.dylib
 [inlined code] from task.jl:422
 in add at pkg/entry.jl:46
 in add at pkg/entry.jl:73
 in anonymous at pkg/dir.jl:31
 in cd at file.jl:22
 in cd at pkg/dir.jl:31
 in add at pkg.jl:23

Any idea ?

tanmaykm commented 8 years ago

@femtotrader thanks for trying this out.

Chrono.jl is here: https://github.com/tanmaykm/Chrono.jl. TSArray uses it for date parsing for now. You can get it with Pkg.clone("https://github.com/tanmaykm/Chrono.jl.git") as it is not registered.

femtotrader commented 8 years ago

Thanks