Diff for "wxMaxima"


Differences between revisions 1 and 19 (spanning 18 versions)
Revision 1 as of 2006-09-01 03:10:43
Size: 1786
Editor: 71-221-20-248
Comment:
Revision 19 as of 2007-04-28 10:58:29
Size: 2728
Editor: 196
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
wxMaxima is a GUI front end for the Maxima computer algebra system (CAS). In Ubuntu 6.06, wxMaxima doesn't work. Maxima alone works, and there doesn't seem to be a problem with wxMaxima itself, but all commands fail because the socket that communicates with Maxima always dies. The workaround is to recompile Maxima with a different Lisp implementation. The bug has been [https://launchpad.net/distros/ubuntu/+source/wxmaxima/+bug/43150 filed] already. ||<tablestyle="float:right; font-size: 0.9em; width:40%; background:#F1F1ED; margin: 0 0 1em 1em;" style="padding:0.5em;">'''Contents'''[[BR]][[TableOfContents(2)]]||
= Introduction =
This is a "how to" for installing the latest version of wxMaxima from source for all flavor of Ubuntu.
Line 3: Line 5:
First, you need to install CMU Common Lisp, because this Lisp will not cause the problem. Also install wxWidgets so you can build wxMaxima later. http://wxmaxima.sourceforge.net/wiki/index.php/Main_Page .
wxMaxima is a cross platform GUI for the computer algebra system maxima based on wxWidgets.

this tutorial requires:

1. an Internet connection (or an Ubuntu DVD + the latest Maxima)

2. basic knowledge of how to open and use a terminal

3. a web browser

= Download, Configure, Make, and Install it =
So first this variable: "latest-version" is the latest version of wxMaxima (as of 3-20-007 it is 0.7.1-1)

'''In a web browser'''

download the package wxmaxima-"latest-version".tar.gz by going to here, http://sourceforge.net/project/showfiles.php?group_id=126731
and clicking on wxmaxima-"latest-version".tar.gz

'''In a terminal'''

First out with the old,
Line 5: Line 29:
sudo apt-get install cmucl libwxgtk2.6-dev
}}}
Hopefully, you will not need anything else (other than build-essential and other basic packages like that) to build Maxima and wxMaxima. If you find that you do, please update this page.

Next, download [http://maxima.sourceforge.net/ Maxima] and [http://wxmaxima.sourceforge.net/ wxMaxima]. Untar them and do the standard build procedure. Maxima needs the {{{--enable-cmucl}}} option.
{{{
tar zxvf maxima*.tar.gz
cd maxima<TAB>
./configure --enable-cmucl && make
sudo checkinstall
}}}
{{{
tar zxvf wxMaxima*.tar.gz
cd wxMaxima<TAB>
./configure && make
sudo checkinstall
sudo apt-get remove maxima-doc wxmaxima
Line 23: Line 32:
You may want to disable both wxMaxima and Maxima from apt. Put the following in your {{{/etc/apt/preferences}}} file. You will need the virtual package "build-essential" for making the package and the package "checkinstall" for building a debian package. So if you don't have it or are unsure,
Line 25: Line 35:
Package: wxmaxima
Pin: version 0.6.4
Pin-Priority: 1000

Package: maxima
Pin: version 5.9.2
Pin-Priority: 1000
sudo apt-get install build-essential checkinstall
Line 34: Line 38:
Your wxMaxima should work now. If you still have unresolved dependencies, then you should find out what they are by trying to install wxMaxima from the repositories, and install all of the extra packages, but not wxMaxima or Maxima.
{{{
sudo apt-get -s install wxmaxima
}}}
Now its time to extract, configure, make and install your package:

{{{tar xfvz /"locationof"/wxMaxima-"latest-version".tar.gz
sudo apt-get build-dep wxmaxima
cd /"locationof"/wxMaxima-"latest-version"/
./configure --enable-dnd --enable-printing --enable-unicode-glyphs --prefix=/usr --exec-prefix=/usr
make
sudo checkinstall}}}
say "yes" to create a document package and paste the description of Maxima off of the website pasted bellow:

''wxMaxima is a cross platform GUI for the computer algebra system maxima based on wxWidgets.''

When this is done type "0" then "ENTER" and enter your email address so that people know who you are if they use your package you@somewhere as an example

hit "ENTER" and hope for the best. Checkinstall attempts to build you a deb package which it automatically installs by default and is also included in the directory you made WxMaxima, i.e. the deb is in /"locationof"/WxMaxima-"latest-version"/. Thus if everything goes smoothly you now have the latest version of wxmaxima installed.

If you get stuck my email address is yigal.weinstein@gmail.com

Here is my deb but be warned I am using Feisty Herd-5 when I compiled this.
attachment:wxmaxima_0.7.1-1_i386.deb

Here's another deb for Dapper (compiled 28-04-2007), works fine on my PC:
attachment:wxmaxima_0.7.1-1_i386_dapper.deb
----
CategoryDocumentation CategoryScience

Introduction

This is a "how to" for installing the latest version of wxMaxima from source for all flavor of Ubuntu.

http://wxmaxima.sourceforge.net/wiki/index.php/Main_Page . wxMaxima is a cross platform GUI for the computer algebra system maxima based on wxWidgets.

this tutorial requires:

1. an Internet connection (or an Ubuntu DVD + the latest Maxima)

2. basic knowledge of how to open and use a terminal

3. a web browser

Download, Configure, Make, and Install it

So first this variable: "latest-version" is the latest version of wxMaxima (as of 3-20-007 it is 0.7.1-1)

In a web browser

download the package wxmaxima-"latest-version".tar.gz by going to here, http://sourceforge.net/project/showfiles.php?group_id=126731 and clicking on wxmaxima-"latest-version".tar.gz

In a terminal

First out with the old,

sudo apt-get remove maxima-doc wxmaxima 

You will need the virtual package "build-essential" for making the package and the package "checkinstall" for building a debian package. So if you don't have it or are unsure,

sudo apt-get install build-essential checkinstall

Now its time to extract, configure, make and install your package:

{{{tar xfvz /"locationof"/wxMaxima-"latest-version".tar.gz sudo apt-get build-dep wxmaxima cd /"locationof"/wxMaxima-"latest-version"/ ./configure --enable-dnd --enable-printing --enable-unicode-glyphs --prefix=/usr --exec-prefix=/usr make sudo checkinstall}}} say "yes" to create a document package and paste the description of Maxima off of the website pasted bellow:

wxMaxima is a cross platform GUI for the computer algebra system maxima based on wxWidgets.

When this is done type "0" then "ENTER" and enter your email address so that people know who you are if they use your package you@somewhere as an example

hit "ENTER" and hope for the best. Checkinstall attempts to build you a deb package which it automatically installs by default and is also included in the directory you made WxMaxima, i.e. the deb is in /"locationof"/WxMaxima-"latest-version"/. Thus if everything goes smoothly you now have the latest version of wxmaxima installed.

If you get stuck my email address is yigal.weinstein@gmail.com

Here is my deb but be warned I am using Feisty Herd-5 when I compiled this. attachment:wxmaxima_0.7.1-1_i386.deb

Here's another deb for Dapper (compiled 28-04-2007), works fine on my PC: attachment:wxmaxima_0.7.1-1_i386_dapper.deb


CategoryDocumentation CategoryScience

wxMaxima (last edited 2010-09-30 20:22:44 by host81-151-161-45)