1

Using Julia Studio (Win XP) and trying to add package DataFrames - how can the following error be resolved?

Unknown dependency for GARCH: NLopt

(How can I verify that a package was installed) Running dv = DataArray([1,2,3]) says DataArray not defined. So it seems stuck.

Metrics
  • 15,172
  • 7
  • 54
  • 83
userJT
  • 11,486
  • 20
  • 77
  • 88

1 Answers1

4

You're using a rather old version of julia (0.1.x) and the GARCH package doesn't support it. Try installing a development version from source (it takes a bit the first time, but should be quite automatic) or try a development binary.

Edit: Also, this issue may now be taken care of if you want to do Pkg.update() and try again.

StefanKarpinski
  • 32,404
  • 10
  • 86
  • 111