Hi experts!.
Im a new user of LINUX. I installed Linux Mint 13 in my Intel atom N2600 (GMA 3600) Acer Netbook. I download the file 'sage-5.9-linux-32bit-ubuntu_13.04-i686-Linux.tar.lzma'. I followed the next instructions for install SAGE 5.9: 1) GO to download folder in Terminal. 2) tar sage-5.9-linux-32bit-ubuntu_13.04-i686-Linux.tar.lzma 3) sudo mv sage-5.9-linux-32bit-ubuntu_13.04-i686-Linux.tar /usr/local/SAGE 4) ln -s /usr/local/SAGE/sage /sbin/sage
When I type 'sage' i see this:
joseluismietta@joseluisnetbook ~ $ sage
| Sage Version 5.9, Release Date: 2013-04-30 | | Type "notebook()" for the browser-based notebook interface. |
| Type "help()" for help. |
The Sage installation tree has moved from /var/lib/buildbot/build/sage/arando-1/arando_binary/build/sage-5.9 to /usr/local/SAGE Updating various hardcoded paths... (Please wait at most a few minutes.) DO NOT INTERRUPT THIS. Done updating paths. sage:
Thats fine but when i try to plot some graph i receive a ERROR:
sage: var('x')
x
sage: plot(cos(x),0,1)
ImportError Traceback (most recent call last) <ipython-input-2-70dec8f1f084> in <module>() ----> 1 plot(cos(x),Integer(0),Integer(1))
/usr/local/SAGE/local/lib/python2.7/site-packages/IPython/core/displayhook.py in __call__(self, result) 236 self.start_displayhook() 237 self.write_output_prompt() --> 238 format_dict = self.compute_format_data(result) 239 self.write_format_data(format_dict) 240 self.update_user_ns(result)
/usr/local/SAGE/local/lib/python2.7/site-packages/IPython/core/displayhook.py in compute_format_data(self, result) 148 MIME type representation of the object. 149 """ --> 150 return self.shell.display_formatter.format(result) 151 152 def write_format_data(self, format_dict):
/usr/local/SAGE/local/lib/python2.7/site-packages/IPython/core/formatters.py in format(self, obj, include, exclude) 124 continue 125 try: --> 126 data = formatter(obj) 127 except: 128 # FIXME: log the exception
/usr/local/SAGE/local/lib/python2.7/site-packages/sage/misc/sage_extension.pyc in __call__(self, obj) 236 s = format_obj(obj) 237 if s is None: --> 238 s = super(SagePlainTextFormatter, self).__call__(obj) 239 return s 240
/usr/local/SAGE/local/lib/python2.7/site-packages/IPython/core/formatters.py in __call__(self, obj) 445 type_pprinters=self.type_printers, 446 deferred_pprinters=self.deferred_printers) --> 447 printer.pretty(obj) 448 printer.flush() 449 return stream.getvalue()
/usr/local/SAGE/local/lib/python2.7/site-packages/IPython/lib/pretty.py in pretty(self, obj) 358 if callable(meth): 359 return meth(obj, self, cycle) --> 360 return _default_pprint(obj, self, cycle) 361 finally: 362 self.end_group()
/usr/local/SAGE/local/lib/python2.7/site-packages/IPython/lib/pretty.py in _default_pprint(obj, p, cycle) 478 if getattr(klass, '__repr__', None) not in _baseclass_reprs: 479 # A user-provided repr. --> 480 p.text(repr(obj)) 481 return 482 p.begin_group(1, '<')
/usr/local/SAGE/local/lib/python2.7/site-packages/sage/structure/sage_object.so in sage.structure.sage_object.SageObject.__repr__ (sage/structure/sage_object.c:1897)()
/usr/local/SAGE/local/lib/python2.7/site-packages/sage/plot/graphics.pyc in _repr_(self) 823 """ 824 if SHOW_DEFAULT: --> 825 self.show() 826 return '' 827 else:
/usr/local/SAGE/local/lib/python2.7/site-packages/sage/misc/decorators.pyc in wrapper(args, *kwds) 454 kwds[self.name + "options"] = suboptions 455 --> 456 return func(args, *kwds) 457 458 #Add the options specified by @options to the signature of the wrapped
/usr/local/SAGE/local/lib/python2.7/site-packages/sage/plot/graphics.pyc in show(self, kwds) 1798 else: 1799 kwds.setdefault('filename', tmp_filename(ext='.png')) -> 1800 self.save(kwds) 1801 os.system('%s %s 2>/dev/null 1>/dev/null &' 1802 % (sage.misc.viewer.png_viewer(), kwds['filename']))
/usr/local/SAGE/local/lib/python2.7/site-packages/sage/misc/decorators.pyc in wrapper(args, *kwds) 454 kwds[self.name + "options"] = suboptions 455 --> 456 return func(args, *kwds) 457 458 #Add the options specified by @options to the signature of the wrapped
/usr/local/SAGE/local/lib/python2.7/site-packages/sage/plot/graphics.pyc in save(self, filename, kwds) 2666 SageObject.save(self, filename) 2667 else: -> 2668 figure = self.matplotlib(options) 2669 # You can output in PNG, PS, EPS, PDF, or SVG format, depending 2670 # on the file extension.
/usr/local/SAGE/local/lib/python2.7/site-packages/sage/plot/graphics.pyc in matplotlib(self, filename, xmin, xmax, ymin, ymax, figsize, figure, sub, axes, axes_labels, fontsize, frame, verify, aspect_ratio, gridlines, gridlinesstyle, vgridlinesstyle, hgridlinesstyle, show_legend, legend_options, axes_pad, ticks_integer, tick_formatter, ticks, title, title_pos, base, scale) 2168 axes = self._show_axes 2169 -> 2170 from matplotlib.figure import Figure 2171 from matplotlib import rcParams 2172 self.fontsize(fontsize)
/usr/local/SAGE/local/lib/python2.7/site-packages/matplotlib/__init__.py in <module>() 131 import sys, os, tempfile 132 --> 133 from matplotlib.rcsetup import (defaultParams, 134 validate_backend, 135 validate_toolbar,
/usr/local/SAGE/local/lib/python2.7/site-packages/matplotlib/rcsetup.py in <module>() 17 import warnings 18 from matplotlib.fontconfig_pattern import parse_fontconfig_pattern ---> 19 from matplotlib.colors import is_color_like 20 21 #interactive_bk = ['gtk', 'gtkagg', 'gtkcairo', 'fltkagg', 'qtagg', 'qt4agg',
/usr/local/SAGE/local/lib/python2.7/site-packages/matplotlib/colors.py in <module>() 50 """ 51 import re ---> 52 import numpy as np 53 from numpy import ma 54 import matplotlib.cbook as cbook
/usr/local/SAGE/local/lib/python2.7/site-packages/numpy/__init__.py in <module>() 134 return loader(packages, *options) 135 --> 136 import add_newdocs 137 __all__ = ['add_newdocs'] 138
/usr/local/SAGE/local/lib/python2.7/site-packages/numpy/add_newdocs.py in <module>() 7 # core/fromnumeric.py, core/defmatrix.py up-to-date. 8 ----> 9 from numpy.lib import add_newdoc 10 11 ###############################################################################
/usr/local/SAGE/local/lib/python2.7/site-packages/numpy/lib/__init__.py in <module>() 11 12 import scimath as emath ---> 13 from polynomial import * 14 #import convertcode 15 from utils import *
/usr/local/SAGE/local/lib/python2.7/site-packages/numpy/lib/polynomial.py in <module>() 15 from numpy.lib.function_base import trim_zeros, sort_complex 16 from numpy.lib.type_check import iscomplex, real, imag ---> 17 from numpy.linalg import eigvals, lstsq 18 19 class RankWarning(UserWarning):
/usr/local/SAGE/local/lib/python2.7/site-packages/numpy/linalg/__init__.py in <module>() 46 from info import __doc__ 47 ---> 48 from linalg import * 49 50 from numpy.testing import Tester
/usr/local/SAGE/local/lib/python2.7/site-packages/numpy/linalg/linalg.py in <module>() 21 isfinite, size, finfo, absolute, log, exp 22 from numpy.lib import triu ---> 23 from numpy.linalg import lapack_lite 24 from numpy.matrixlib.defmatrix import matrix_power 25 from numpy.compat import asbytes
ImportError: /lib/i386-linux-gnu/libc.so.6: version `GLIBC_2.17' not found (required by /usr/local/SAGE/local/lib/libgfortran.so.3)
I dont know what to do about this. Please help! Please remember that im a basic LINUX user.
Thanks a lot!!