help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Updating Octave


From: Thomas D. Dean
Subject: Re: Updating Octave
Date: Tue, 5 Sep 2017 09:19:40 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1

On 09/05/2017 08:52 AM, Lester Anderson wrote:
Thanks for the information. If I have a set of packages to install, is
there a batch way to do it or is it still one by one?

<snip>

You can make a script to do this.

First, backup the directory containing your packages.

mypkgs = pkg('list');
for idx = 1:numel(mypkgs)
  printf("%2d %s\n",idx, mypkgs{idx}.name)
  if numel(mypkgs{idx}.depends) > 0
    printf("  Has depends\n");
  endif
endfor


etc.

Tom Dean



reply via email to

[Prev in Thread] Current Thread [Next in Thread]