LoginSignup
5
2

More than 5 years have passed since last update.

Dockerを利用してjupyterにhaskellを構築した

Last updated at Posted at 2018-05-26

PCスペック
・Mac os

ローカル環境にdocker,jupyter notebookをインストールし
下記のコマンドを実行

$docker pull gibiansky/ihaskell:latest
$docker run -it --volume $(pwd):/notebooks --publish 8888:8888 gibiansky/ihaskell:latest
$open http://`docker-machine ip default`:8888/
$docker run -it --volume `pwd`:/notebooks --publish 8888:8888 gibiansky/ihaskell:latest

http://localhost:8888/   へアクセスすると
jupyter notebook上で、haskell環境を構築できる。

https://gyazo.com/9913aa6be6d9c8176165d979a96d4b46

5
2
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
5
2