Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/github/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何使用github到jupyter笔记本的模块_Github_Module_Jupyter Notebook_Repository - Fatal编程技术网

如何使用github到jupyter笔记本的模块

如何使用github到jupyter笔记本的模块,github,module,jupyter-notebook,repository,Github,Module,Jupyter Notebook,Repository,我是python和github的新用户 我想与windows 10上的anaconda jupyter一起使用github()上发布的新存储库(模块) 我下载了zip文件夹并将其解压缩到我的下载文件夹(F:\Téléchargement\raytrace master),但是我不知道如何在jupyter中使用这个模块 如何将此模块导入jupyter 我尝试了一些方法,但没有成功 为什么无法将文件夹从我的下载文件夹(F:/téléchargement/)直接复制并粘贴到jupyter笔记本文件夹

我是python和github的新用户

我想与windows 10上的anaconda jupyter一起使用github()上发布的新存储库(模块)

我下载了zip文件夹并将其解压缩到我的下载文件夹(F:\Téléchargement\raytrace master),但是我不知道如何在jupyter中使用这个模块

如何将此模块导入jupyter

我尝试了一些方法,但没有成功

为什么无法将文件夹从我的下载文件夹(F:/téléchargement/)直接复制并粘贴到jupyter笔记本文件夹(…/source/repos/例如)


谢谢

尝试从Github站点使用http复制url,并将其用于

!git克隆
在jupyter笔记本电脑单元中

然后你就可以做
!ls
检查存储库是否已下载。感叹号表示您可以从笔记本执行命令行命令


或者,您可以尝试解压缩repo并将其移动到运行jupyter的同一目录,然后使用
搜索它!ls

git和ls未被识别为内部命令…我的错误。这是一个窗户的东西。试着用Dir代替ls。如果尚未下载git,则需要下载。(学习曲线是值得的)我在这里尝试了你的解决方案:。看起来不错!我不熟悉它是如何被托管的,但如果它能工作,我很高兴!谢谢你的帮助