1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Juliaをjupyter notebookで使えるように1から導入してみた(Mac)

Last updated at Posted at 2019-01-19

はじめに

普段Pythonを使っているのですが、
Juliaが気になったので、1から環境構築しました。
その時、実行したコマンドを全て載せています。

手順

Juliaをインストール

$ brew cask install julia

Juliaを起動

$ julia
   _       _ _(_)_     |  Documentation: https://docs.julialang.org
  (_)     | (_) (_)    |
   _ _   _| |_  __ _   |  Type "?" for help, "]?" for Pkg help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 1.0.3 (2018-12-18)
 _/ |\__'_|_|_|\__'_|  |  Official https://julialang.org/ release
|__/                   |

Pkgパッケージの利用を宣言し、
jupyter notebook用のパッケージ(IJulia)を追加

julia> using Pkg
julia> Pkg.add("IJulia")

パッケージの追加が完了したら、IJuliaの利用を宣言

julia> using IJulia

Juliaを終了して、jupyter notebookを立ち上げる

julia> exit()
$ jupyter notebook

Jupyter notebookでJuliaが使えるようになりました!!
(2019/1/19時点:バージョン 1.0.3)

スクリーンショット 2019-01-19 23.31.42.png

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?