-1

論文用に fortran でスクリプトをコンパイルしようとしています。私はMacで作業しており、gfortranをインストールしました。その後、geanyをインストールしましたが、問題ありません。コード (.f90 拡張子) を作成または開くと、次のようなさまざまなエラーが発生するため、セットアップに問題があると思います。

gfortran -Wall -o "xxx" "xxx.f90" (ディレクトリ: /Users/.../project)

ビルドに失敗しました。(それからの翻訳)

/bin/sh: gfortran: コマンドが見つかりません

なんで?どこが間違っていますか?どうすれば解決できますか?

直接実行しようとすると、次のようになります。

./geany_run_script.sh: 5 行目: ./xxx: そのようなファイルやディレクトリはありません

------------------ (プログラムはコード: 127 で終了しました) Return キーを押して続行します

4

1 に答える 1

0

(Answered in the comments. See Question with no answers, but issue solved in the comments (or extended in chat) )

@Kyle Kanos wrote:

Looks like gfortran is not in your PATH. Can you post the output of echo $PATH?. The second error comes from the fact that you did not compile xxx.f90 so xxx does not exist, so you can safely ignore that for now.

The OP Wrote:

I've reinstalled gfortran and now all works properly!

于 2015-01-25T20:42:31.340 に答える