In our company we learned to connect our notebook to git repository, however there is an issue.
Running a notebook inside another notebook. This is the way that we have discovered, however this solution cant go into production because it included an employee username in the path.
What is/are solution to solve it?
CodePudding user response:
You need to use relative paths for %run command. For example:
./namefor notebook in current directory../namefor notebook in parent directory../../namefor notebook in two levels highersubdir/namefor notebook in sub-directory with namesubdir
You can also consider to use arbitrary files support in Repos, although it's mostly for Python & R modules.

