User Tools

Site Tools


start

This blog is my notebook for computer and technology related information, copies of useful webcontent (with refs of course), troubleshooting, general tips and setups that work well for me.

Useful tags:

Blog

Installing Sage on Debian or Ubuntu

Sage is a very powerful computer algebra system. Especially nice is the LaTeX integration using sagetex. Here's how to set this up:

Compile yourself

Install prerequisite libraries

sudo apt-get install build-essential m4 readline-common libreadline-dev texlive xpdf evince tk8.5-dev gfortran

Download the current version of the sources and compile them

wget http://mirror.switch.ch/mirror/sagemath/src/sage-4.8.tar
tar xvf sage-4.8.tar

Download pre-build

Download the file for you platform from here http://www.sagemath.org/download-linux.html

Unpack/move the build or downloaded files to /opt, this gives you a directory /opt/sage-4.xy…

Finishing up the installation

Make a symolic link to this directory:

sudo ln -s /opt/sage-4.... /opt/sage

Change the ownership of the files to root

sudo chown root:root /opt/sage/* -R

Run sage as root for the first time to update some paths which are absolute

cd /opt/sage-4....
sudo sage

After that, you should be able to run sage as a normal user

sage
sage: 2+2
4
sage:

If you get errors when starting up, then probably the first start as root has created some files in the directory ~./sage which now belong to root instead of you (USER)

cd .sage 
sudo chown $USER:$USER * -R
sage

Should now work.

Setting up sagetex for LaTeX

If you use LaTeX and want to integrate sage into your latex files (which gives you all the power of sage/maxima/maple/… directly inside you LaTeX file!):

  mkdir ~/texmf
  ln -s /opt/sage/local/share/texmf/tex/generic/sagetex/ ~/textmf/sagetex
  sudo texhash

Now you have the sagetex.sty file from the sage installation available. If you run texlive, it's a good idea to hunt down and rename the outdated sagetex.sty file which probably hangs around:

cd /usr/share/texmf-texlive/tex/latex/sagetex
ls
sudo mv sagetex.sty sagetex.sty.off
sudo texhash

To get started with sagetex read this guide: http://www.sagemath.org/doc/tutorial/sagetex.html

~~LINKBACK~~

2014-04-24 13:16 · brb · 0 Comments

Archive

Blog History

2009-05: 18 entries 2009-06: 12 entries 2009-07: 9 entries 2009-08: 5 entries 2009-09: 2 entries 2009-10: 2 entries 2009-11: 5 entries 2009-12: 4 entries 2010-01: 1 entry 2010-02: 3 entries 2010-03: 2 entries 2010-04: 2 entries 2010-05: 3 entries 2010-06: 10 entries 2010-07: 8 entries 2010-08: 5 entries 2010-09: 4 entries 2010-10: 6 entries 2010-11: 2 entries 2010-12: 6 entries 2011-01: 5 entries 2011-02: 3 entries 2011-03: 5 entries 2011-04: 2 entries 2011-05: 4 entries 2011-06: 5 entries 2011-07: 11 entries 2011-08: 12 entries 2011-09: 4 entries 2011-10: 4 entries 2011-11: 2 entries 2011-12: 1 entry 2012-01: 5 entries 2012-02: 2 entries 2012-04: 3 entries 2012-06: 1 entry 2012-09: 4 entries 2012-10: 1 entry 2013-04: 1 entry 2014-04: 10 entries 2014-08: 2 entries 2015-04: 1 entry 2015-09: 3 entries 2016-04: 1 entry 2016-05: 1 entry 2016-06: 1 entry 2016-07: 2 entries 2016-10: 1 entry 2017-01: 1 entry 2017-02: 2 entries 2017-04: 1 entry 2017-05: 1 entry 2017-07: 2 entries 2017-08: 1 entry 2017-10: 1 entry 2017-11: 1 entry 2017-12: 2 entries 2018-10: 1 entry 2019-02: 1 entry 2019-05: 1 entry 2019-09: 1 entry 2019-10: 2 entries 2020-08: 1 entry 2020-01: 1 entry 2021-01: 1 entry 2021-02: 1 entry 2021-07: 1 entry 2022-05: 2 entries 2022-06: 1 entry 2022-11: 1 entry 2023-05: 1 entry 2023-09: 2 entries 2023-12: 2 entries 2024-09: 1 entry

2024

September

2023

December

September

May

2022

November

June

May

2021

July

February

January

2020

January

August

2019

October

September

May

February

2018

October

2017

December

November

October

August

July

May

April

February

January

2016

October

July

June

May

April

2015

September

April

2014

August

April

2013

April

2012

October

September

June

April

February

January

2011

December

November

October

September

August

July

June

May

April

March

February

January

2010

December

November

October

September

August

July

June

May

April

March

February

January

2009

December

November

October

September

August

July

June

May

start.txt · Last modified: 2022-11-29 08:28 by brb