How to save code file on GitHub and run on Jupyter notebook?

后端 未结 2 984
时光取名叫无心
时光取名叫无心 2021-01-14 08:48

With GitHub we can store our code online, and with Jupyter notebook we can execute only a segment of our Python code. I want to use them together. I am able to edit code wit

2条回答
  •  悲&欢浪女
    2021-01-14 09:19

    Github is a tool for version and source control, you will need to get a copy of the code to a local environment.

    There is a beginner's tutorial here

    Once that you have set up a github account and define your local and remote repositories, you will be able to retrieve the code with git checkout. Further explanation is in the tutorial

提交回复
热议问题