LoginSignup
2
3

More than 3 years have passed since last update.

juliaをソースからビルドする際のmakeエラー

Last updated at Posted at 2019-05-06

環境
Ubuntu18.04


Juliaをgit cloneしてからmakeすると

Makefile:60: recipe for target 'julia-deps' failed
make: *** [julia-deps] Error 2

のエラーが出る場合の解決策をメモ

結論

$ sh download_cmake.shをしないとmakeでエラーが出てしまいます。

以下のようにしましょう。

Juliaのbuild方法

$ git clone https://github.com/JuliaLang/julia.git
$ sh ./julia/contrib/download_cmake.sh
$ make -j6
$./julia

参照

プログラミング/julia/インストール

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3