Hi Erik, On Fri, Jan 22, 2010 at 8:15 AM, Erik Lane <erikl...@gmail.com> wrote: > Issues with the install: > > README.txt needs updating. At least for Ubuntu ranlib doesn't show up as an > option for apt-get, but it is part of the binutils package. Also needs to be > updated re: the new requirements for gfortran. It still lists the old info. > GCC needs to be all lowercase for apt-get to find it on Ubuntu.
See ticket #7484 [1] for some effort to update the README.txt. A related ticket is #8024 [2] for updating the scripts to check for pre-requisites. > export SAGE_CHECK="yes" Usually, you should not do this. If you just want to build Sage, then the following shell script suffices: # script name: build.sh 1. #!/bin/sh 2. export DOT_SAGE=/tmp/<username>/<sage-x.z.y> 3. export MAKE='make -j<n>' 4. make Line 2 sets the Sage configuration directory to the specified directory. The default value is DOT_SAGE=$HOME/<username>. I often use this script to build Sage as follows $ chmod +x build.sh $ nohup ./build.sh & [1] http://trac.sagemath.org/sage_trac/ticket/7484 [2] http://trac.sagemath.org/sage_trac/ticket/8024 -- Regards Minh Van Nguyen
-- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org