Ask Your Question
0

Sage and python subprocess

asked 2015-09-19 17:11:30 +0200

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

Just installed sage-6.8

From python program I run the following command:

res = check_output(["/opt/mathenv/sage-6.8/sage","/opt/mathenv/mathsite/mathsite/scripts/eq_solver.sage","x-5", "x",'-oo', '1', 'oo', '1', '14'])

But this piece of code gives me the following error:

CalledProcessError: Command '['/opt/mathenv/sage-6.8/sage', '/opt/mathenv/mathsite/mathsite/scripts/eq_solver.sage', 'x-5', 'x', '-oo', '1', 'oo', '1', '14']' returned non-zero exit status 1

It works perfectly if I enter the command directly in shell, so there are no errors with the script.

I've managed to get the error:

Setting permissions of DOT_SAGE directory so only you can read and write it.
os.chmod(DOT_SAGE, _desired_mode)\nOSError: [Errno 1]
Operation not permitted: \'/var/www/.sage/'

How can I fix it?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2015-09-19 17:29:44 +0200

vdelecroix gravatar image

Hello,

The problem is explicit: you do not have write access to the repository /var/www/.sage/. Under which user are you launching python? It might be that this user has a home configured to be /var/www/ but has no write access to it.

Vincent

edit flag offensive delete link more

Comments

Sorry, I'm newbie to this. How can I check it? I actually deployed django site and I logged in as root.

proy gravatar imageproy ( 2015-09-19 18:36:27 +0200 )edit
1

Managed to fix it. I ran script as www-data, so chown -R www-data /root/.sage and same for /var/www/ fixed the problem.

proy gravatar imageproy ( 2015-09-19 19:42:51 +0200 )edit

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: 2015-09-19 17:11:30 +0200

Seen: 786 times

Last updated: Sep 19 '15