1

I tried to install in Octave these packages:

  • bim
  • image

But setup is not finished, because this error:

enter image description here

Before starting to install packages, I updated the pkg itself with the command

pkg update

After a long update, everything also gives an installation error. Also reinstalled Octave, the error does not disappear

Cris Luengo
  • 55,762
  • 10
  • 62
  • 120
beginner
  • 183
  • 2
  • 12
  • That error implies you don't have the package file. Do you have it? – AKX May 18 '21 at 13:17
  • did you first download those files and are they located in the current working directory? (do they show up in a `dir` or `ls` command, or appear in the file/folder tree in the upper left section of the GUI?) – Nick J May 18 '21 at 14:07
  • Also, `pkg update` does not update `pkg` itself. It goes through your list of installed pkgs (see `pkg list` and attempts to download and update any that appear out of date. you should also indicate what version of Octave you're running. – Nick J May 18 '21 at 14:09

1 Answers1

3

I don't use Octave, but based on the instructions on https://octave.sourceforge.io/, you should try

pkg install -forge image
pkg install -forge bim

to install the Forge image and bim packages respectively.

AKX
  • 152,115
  • 15
  • 115
  • 172