11

誰でもこのエラーで私を助けることができますか?

octave:4> pkg install signal-1.2.0.tar.gz
error: the following dependencies where unsatisfied:
   signal needs optim >= 1.0.0
 signal needs specfun >= 0.0.0
 signal needs control >= 2.2.3
 signal needs general >= 1.3.2
octave:4> pkg install optim-1.2.2.tar.gz
error: the following dependencies where unsatisfied:
   optim needs miscellaneous >= 1.0.10
 optim needs struct >= 1.0.10
octave:4> pkg install struct-1.0.10.tar.gz
make: /usr/bin/mkoctfile: Command not found
make: *** [fields2cell.oct] Error 127
'make' returned the following error: make: Entering directory `/tmp/oct-fDBs5k/struct-1.0.10/src'
/usr/bin/mkoctfile -s fields2cell.cc
make: Leaving directory `/tmp/oct-fDBs5k/struct-1.0.10/src'
error: called from `pkg>configure_make' in file /usr/share/octave/3.6.2/m/pkg/pkg.m near line 1391, column 9
error: called from:
error:   /usr/share/octave/3.6.2/m/pkg/pkg.m at line 834, column 5
error:   /usr/share/octave/3.6.2/m/pkg/pkg.m at line 383, column 9

シグナルパッケージをインストールする必要がありますが、動作するために他のものをダウンロードする必要がありますが、構造体パッケージをインストールするときにスタックします。

@edit misc~ パッケージをインストールしようとすると、同じエラーが発生します。

octave:5> pkg install miscellaneous-1.2.0.tar.gz
error: the following dependencies where unsatisfied:
   miscellaneous needs general >= 1.3.1
octave:5> pkg install general-1.3.2.tar.gz
make: /usr/bin/mkoctfile: Command not found
make: *** [__exit__.oct] Error 127
'make' returned the following error: make: Entering directory `/tmp/oct-CA6o4U/general/src'
/usr/bin/mkoctfile __exit__.cc
make: Leaving directory `/tmp/oct-CA6o4U/general/src'
error: called from `pkg>configure_make' in file /usr/share/octave/3.6.2/m/pkg/pkg.m near line 1391, column 9
error: called from:
error:   /usr/share/octave/3.6.2/m/pkg/pkg.m at line 834, column 5
error:   /usr/share/octave/3.6.2/m/pkg/pkg.m at line 383, column 9

@編集追加情報:

octave:6> which mkoctfile
`mkoctfile' is a function from the file /usr/share/octave/3.6.2/m/miscellaneous/mkoctfile.m

私は何をすべきかわからない..

4

1 に答える 1

14

をインストールする必要がありますmkoctfile。ubuntu のバージョンに応じて、これは異なるパッケージになります。以前は入っていましoctave-pkg-devたが、今は入っていliboctave-devます。

Ubuntu と Debian では、パッケージを自分でビルドする場合にのみ必要になるため、これを別のパッケージとして配置します。彼らは、パッケージ化した Octave パッケージを使用することを期待しています ( sudo apt-get install octave-signal)。彼らのバージョンは実際のバージョンよりも遅れていますが、彼らが配布する Octave バージョンでも同じことが起こります。それが安定の代償です。

于 2013-01-10T17:07:22.627 に答える