[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: signal package
From: |
Lukas Reichlin |
Subject: |
Re: signal package |
Date: |
Tue, 18 Jun 2013 12:53:54 +0200 |
On 18.06.2013, at 10:59, "Maximilian Schäkel" <address@hidden> wrote:
> Hello,
> I have a problem with the installation of the signal package. I have the
> packet signal-1.2.2.tar.gz still packed in my download folder.
> If I give the following command in Octave:
>
> pkg install-forge-signal-1.2.2.tar.gz
>
> is output as error message:
>
> warning: file-forge does not exist
> warning: file> = does not exist
> warning: file does not exist 2.2.3
> error: The following dependencies where unsatisfied:
> signal needs octave> = 3.6.0
> signal needs specfun> = 0.0.0
> control signal needs> = 2.2.3
> signal needs general> = 1.3.2
>
> Unfortunately I have no idea how this problem can be solved. I would be very
> grateful if someone can tell me what I can install this package and command
> me this command may also explicitly writes, I'm still very inexperienced with
> octave
Your command
pkg install-forge-signal-1.2.2.tar.gz
needs a space after install:
pkg install -forge signal
or
pkg install signal-1.2.2.tar.gz
Lukas