web-dev-qa-db-ja.com

Juliaのバージョン番号の確認方法ver()コマンドはありますか?

Julia studio 0.4.4をインストールしましたが、複数行コメントをサポートしていないことがわかりました#=...=#そのため、実行中のJuliaのバージョンを見つけたかったのです。

Matlabでは、コマンド ver を入力すると、matlabのバージョン番号だけでなく、インストールされているすべてのツールボックスのバージョン番号も表示されます。

私はしばらくグーグルしましたが、ジュリアのための同様のコマンドを見つけることができませんでした。ジュリアにそのような命令はありますか?

Julia> Version
ErrorException("Version not defined")
Julia> ver
ErrorException("ver not defined")
Julia> ver()
ErrorException("ver not defined")
Julia> Version()
ErrorException("Version not defined")
27
Steve H

versioninfoコマンドを使用します。

ドキュメント から:

versioninfo([verbose::Bool])

    Print information about the version of Julia in use. If the verbose argument 
    is true, detailed system information is shown as well.
27
damienfrancois

定数VERSIONを入力するだけで、バージョン番号も表示されます。

Julia> VERSION
v"0.4.0"
23
Dawny33

Windowsを使用している場合は、cmdコマンドのJulia -versionを使用できます

0
HT.haung