Welcome to Cadabra Q&A, where you can ask questions and receive answers from other members of the community.
+1 vote

I want to know if there is some specific folder to save notebooks to import them to another notebook using

from file import *

For example I have saved a notebook named cadabrafile.cnb in say folder_x. Do I need to write the new notebook in the same folder? What I understood is, in this case the command will be

from cadabrafile import *
in General questions by (170 points)

1 Answer

+1 vote

Just stick it anywhere in your PYTHONPATH; the import works just like any regular Python import process.

by (76.7k points)
...