Ask Your Question
1

How to set the working or current directory in the notebook?

asked 8 years ago

Alasdair gravatar image

If I start sage in my directory ~/Sage/ then !pwd returns that directory. If I start a notebook though, the directory, given with

import os
os.getcwd()

is a temporary directory within the /tmp tree. And if I try to change that directory with os.chdir("/home/me/Sage") then that change doesn't seem to "stick", in that the second time I call os.getcwd() it gives me the /tmpdirectory again.

What I want to do is to run the Sage notebook in such a way that I can load files from its current working directory. I tried starting the notebook with notebook("/home/me/Sage") but it seems to make no difference. Unless of course the results of os are wrong.

How can I fix the working directory for use within the notebook?

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
0

answered 8 years ago

tmonteil gravatar image

updated 8 years ago

The previous trick does not work anymore. As a workaround, you can just load your stuff with absolute path:

load("/home/me/Sage/my_program.sage")

Another possibility is to use jupyter notebook (sage -n jupyter).

Preview: (hide)
link
0

answered 8 years ago

slelievre gravatar image

You should use the Jupyter notebook.

Launch it by running

$ sage -n jupyter

after cd-ing to the location you want.

This will open your browser at the page localhost:8888/tree

Then click "New" and in the pop-up menu select "SageMath 7.x".

Your browser will now be at http://localhost:8888/notebooks/Untitled.ipynb?kernel_name=sagemath.

Then type in some code in the input cells; get output cells when you evaluate them.

Preview: (hide)
link

Comments

Note that the Sage notebook still has some advantages over jupyter, in particular, the live documentation, and the possibility to import worksheets as .rst files.

tmonteil gravatar imagetmonteil ( 8 years ago )

@tmonteil, you are right. Work on support for live documentation in Jupyter notebook worksheets is ongoing at Sage trac ticket #20690 Live documentation in Jupyter using Thebe with follow-up work on further functionality at Sage trac ticket #20893 Improve live documentation in the Jupyter notebook.

slelievre gravatar imageslelievre ( 8 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 8 years ago

Seen: 11,346 times

Last updated: Aug 22 '16