美文网首页
jupyter lab添加多内核

jupyter lab添加多内核

作者: 奇而思 | 来源:发表于2020-03-04 16:57 被阅读0次

    参考这篇博客

    推荐使用python 3.7以上版本。

    添加多内核分为以下步骤:

    1. 创建虚拟环境
      conda create -n py37 python=3.7

    2. 激活环境
      activate py367

    3. 在该环境下安装kernel
      conda install ipykernel

    4. 向jupyter中添加
      python -m ipykernel install --name py37

    5. 进入jupyter lab
      jupyter lab

    相关文章

      网友评论

          本文标题:jupyter lab添加多内核

          本文链接:https://www.haomeiwen.com/subject/kidblhtx.html