Is it possible to start another notebook from the current notebook? I know how to create and save the current notebook but I cannot launch another notebook from the current one. %run does not work while starting another notebook
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
- Correctly parse PDF paragraphs with Python
The answer of kikocorreoso should open the specified notebook at launch. When this is not required or desirable, you can simply create a clickable link (even relative) in a Markdown cell, i.e.:
If I suppose you know the url for the notebook you want to open you could open it in the following way:
This code should be a code cell in your notebook:
If you don't know the complete path (url) to the notebook you should, at least, know the name of the notebook you created. In this case you could do:
Maybe the browser will ask if you want to open the new tab.