Reputation: 419
I have a jupyter notebook with python code and am wondering if it needs to go to a specific file location in Ubuntu? Is there a best practice as to where to put it? Does it not matter?
For example, I place my html/css code in /var/www/html
in ubuntu.
Thank you!
Upvotes: 0
Views: 318
Reputation: 602
There is no "recommended" directory as in case of hosted websites that are placed under /var/www/html
. It is more of a personal preference.
I personally use a subdirectory under /home/username
to organizes all my codes files with separate folders for each project.
Upvotes: 1
Reputation: 791
Since you mentioned "windows subsystem for Linux." I recommend :
Create a folder in /mnt/c/my_notebook_folder. You can also access this folder from windows c:\my_notebook_folder
Initialize a git repo and checking the code to GitHub/bitbucket or source control of your choice.
Upvotes: 0