On Fri, Jan 13, 2023 at 11:18 AM Brian Revell <bjr.newmail(a)gmail.com> wrote:
Hi Marcin
I may be missing somthing here, but having downloaded BACE.zip from the sourceforge site.
The zip file is in Downloads
Hence I entered in script
? 'pkg install /Downloads/BACE.zip --local'
Invalid option '--local'
Brian, if you literally mean that you wrapped the command line
(following the ? above) in single-quotes, then surely it would not
work. A gretl command must not be quoted. Besides that the path
"/Downloads/BACE.zip" points to what is presumably a non-existent
directory at the root of your hard drive ("/"). A plausible version of
the command would be something like
pkg install c:/users/brian/Downloads/BACE.zip --local
Allin Cottrell