gpt4 book ai didi

jupyter - 当 Jupyter 从 Ubuntu WSL 运行时,如何访问存储在 Windows 中的 Jupyter notebook?

转载 作者:行者123 更新时间:2023-12-03 14:25:11 26 4
gpt4 key购买 nike

我已经在 Windows 10 上设置了 WSL(适用于 Linux 的 Windows 子系统)并安装了包含 python 3 和 jupyter 实验室的 Anaconda。
启动 Jupyter 实验室时,我被要求复制粘贴 http://localhost:8888/lab在我的浏览器中,效果很好。
但是,我不知道如何访问存储在 Windows 中的所有笔记本,我无法通过 Jupyter Lab 浏览 Windows。

我在谷歌搜索过,但找不到答案。

有没有人知道如何浏览存储在 Windows 中的 notebooks 文件夹?

最佳答案

正如您已经发现的那样,在不同环境之间处理文件可能是一个很大的生产力杀手。一种可能的方法是:

  • 使用 github.com 或等效工具和 pushing those files 将本地 PC 上的文件组织到存储库中到您的帐户。
  • Open a new terminal window在你的 Jupyter 实验室中,并拉出 repo,替换你的姓名和电子邮件:
  • $ sudo apt install git
    $ git config --global user.name "username"
    $ git config --global user.email "email"
    $ git init
    $ git clone
  • 如果您还没有这样做,那么它也可以帮助您使用 conda environment ,并将规范文件添加到您的 github 存储库,以便您始终了解 conda 环境规范,无论您是在 Windows 还是 WSL(或完全在另一台服务器上)。
  • $ conda list --explicit > spec-file.txt
    $ git add spec-file.txt
    $ git commit -m "added spec file for conda environment"
  • 如果您使用 conda 安装了 jupyter,那么您的 conda 环境应该在 Jupyter Lab 中是“可选的”,但如果不是,stackoverflow 上还有其他帖子展示了如何配置 Jupyter Lab 以确保您可以选择各种 conda 环境。
  • 关于jupyter - 当 Jupyter 从 Ubuntu WSL 运行时,如何访问存储在 Windows 中的 Jupyter notebook?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56347377/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com