LoginSignup
0
0

More than 5 years have passed since last update.

WindowsにMinicondaインストール(2018年)JupyterLabはIE11サポート対象外

Posted at

環境

windows7 + IE11
conda 4.5.4
Python 3.6.5 :: Anaconda, Inc.
Jupyterlab Beta Release Series Version 0.32.1

現象

タブにJupyterlabの文字が表示されるが、本文は空白で表示する。 

対応

デフォルトのブラウザを換えたくないので、jupyter側のブラウザをFirefoxに変更する。
(参考)WindowsにMinicondaインストール(2018年)
https://qiita.com/FukuharaYohei/items/cf72049b2a97687037bb
(参考)Anaconda-Navigateから jupyter lab が使用できない
>JupyterLab は、CSS 変数を使用しているので、それをサポートしていない IE 11+ や Edge 14 はサポート対象外。」
http://memopad.bitter.jp/blog/2017/11/27/anaconda-navigate%E3%81%8B%E3%82%89-jupyter-lab-%E3%81%8C%E4%BD%BF%E7%94%A8%E3%81%A7%E3%81%8D%E3%81%AA%E3%81%84/
PartialScript

#c.NotebookApp.browser = ''
import webbrowser
webbrowser.register('firefox', None, webbrowser.GenericBrowser('C:\\Program Files\\\Mozilla Firefox\\firefox.exe'))
c.NotebookApp.browser = 'firefox'
0
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
0
0