Jupyter Notebook Basics
How to launch the Jupyter notebook from any drive
For example from D drive, use the below command:
Open command prompt and run it
cmd
jupyter notebook --notebook-dir=D:/
Create empty text file
%%wrtiefile first_file.txt ------- create empty text file
%%writefile first_file.txt
This is my first text file to run the python commands.
I will execute this file to test the result.
It is the end of the text file.
Check the default working directory:
pwd
Comments
Post a Comment