2
2

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.

Atom+Hydrogenの設定方法

Last updated at Posted at 2019-05-11

AtomにHydrogenを設定する方法をまとめる

 まずAtomをインストール
 次にAtomのパッケージにHydrogenをインストール
 https://atom.io/packages/hydrogen
image.png

 パッケージのSettingからHydrogenの設定画面に移動し、「Kernel Gateways」の下の欄にjupyterの設定を入れる。
 image.png
 
 よくあるのは「jupyter kernelspec list --json」を実行した結果で返されるJsonを張り付けること。

 私の場合はremoteでの接続の方が楽なので

aaa.bat
[{
  "name": "Remote server",
  "options": {
    "baseUrl": "http://localhost:8888/",
    "token": "my_secret_token"
  }
}]

 あとはこんな感じ
https://qiita.com/dimorportheca47/items/053c98ed47637c995de1

右側に出力を表示したい場合は「Toggle Output Area」

 Ctrl+Shift+p
 Hydrogen: Toggle Output Area
  下記を参照
 https://ensekitt.hatenablog.com/entry/2018/05/24/200000

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?