个人工具

“UbuntuHelp:Mathematica”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
 
(未显示同一用户的4个中间版本)
第1行: 第1行:
 
{{From|https://help.ubuntu.com/community/Mathematica}}
 
{{From|https://help.ubuntu.com/community/Mathematica}}
 
{{Languages|UbuntuHelp:Mathematica}}
 
{{Languages|UbuntuHelp:Mathematica}}
 +
<<Include(Tag/StyleCleanup)>>
 
Mathematica is not free software, see ['UbuntuScience'] for alternatives.
 
Mathematica is not free software, see ['UbuntuScience'] for alternatives.
 
== Installation ==
 
== Installation ==
第13行: 第14行:
 
Alternatively you can copy the Linux installer to a temporary directory and run Math''''''Installer:
 
Alternatively you can copy the Linux installer to a temporary directory and run Math''''''Installer:
 
<pre><nowiki>
 
<pre><nowiki>
mkdir /tmp/Mathematica/Installers
+
mkdir -p /tmp/Mathematica/Installers
cd /cdrom/Unix/Installers
+
cp -r /cdrom/Unix/Installers/Linux /tmp/Mathematica/Installers
cp -r Linux/ /tmp/Mathematica/Installers
+
 
cd /tmp/Mathematica/Installers/Linux/
 
cd /tmp/Mathematica/Installers/Linux/
 
./MathInstaller
 
./MathInstaller
第31行: 第31行:
 
== Known Issues and Workarounds ==
 
== Known Issues and Workarounds ==
 
=== Environment Variables ===
 
=== Environment Variables ===
A number of these fixes involve setting environment variables.  There are several ways to set these and have them be seen by Mathematica (or other programs). First, you can add them to your <code><nowiki>~/.bashrc</nowiki></code>:
+
A number of fixes involve setting environment variables.  There are several ways to set these and have them be seen by Mathematica (or other programs). First, you can add them to your <code><nowiki>~/.bashrc</nowiki></code>:
 
<pre><nowiki>
 
<pre><nowiki>
export VARIABLE=value
+
export VARIABLE=value
 
</nowiki></pre>
 
</nowiki></pre>
This will make the variable visible to essentially all programs you run.  You can simply type a line like the above in a terminal, and all program you run from that terminal will see the variable. Finally, you can set the variable in a subshell and run the program from that subshell:
+
This will make the variable visible to all programs you run from the command line. You can also set the variable when launching the program:
 
<pre><nowiki>
 
<pre><nowiki>
( export VARIABLE=value ; Mathematica & )
+
VARIABLE=value Mathematica
 
</nowiki></pre>
 
</nowiki></pre>
The '(' and ')' cause the shell to launch a subshell and run the enclosed commands in it, thus it will not affect the original shell.  The ideal thing to do is probably make a launcher script like so:
+
Or you can make a launcher script like this:
 
<pre><nowiki>
 
<pre><nowiki>
#!/bin/bash
+
#!/bin/sh
export VARIABLE1=value1
+
VARIABLE1=value1 VARIABLE2=value2 Mathematica -option1 -option2
export VARIABLE2=value2
+
Mathematica -option1 -option2 &
+
 
</nowiki></pre>
 
</nowiki></pre>
 
=== Applet Bug ===
 
=== Applet Bug ===
第66行: 第64行:
 
<pre><nowiki>
 
<pre><nowiki>
 
(*
 
(*
* Set up a $SoundDisplayFunction for the
+
* Set up a $SoundDisplayFunction for the
* Linux version of Mathematica and potentially other unixes, too.
+
* Linux version of Mathematica and potentially other unixes, too.
*)
+
*)
Begin[[UbuntuHelp:System`Private`|System`Private`]]
+
 +
Begin["System`Private`"]
 +
 
 
Unprotect[$SoundDisplayFunction]
 
Unprotect[$SoundDisplayFunction]
 
Clear[$SoundDisplayFunction]
 
Clear[$SoundDisplayFunction]
 +
 
$SoundDisplayFunction =
 
$SoundDisplayFunction =
Module[{playCmd,soundFileName},
+
    Module[{playCmd,soundFileName},
Display[$SoundDisplay, #1];
+
        Display[$SoundDisplay, #1];
(* is there a way to get the sample rate, etc. from the audio stream? *)
+
       
playCmd = "artsplay";
+
        (* is there a way to get the sample rate, etc. from the audio stream? *)
soundFileName = "/dev/shm/" <> ToString[Unique[[UbuntuHelp:sound|sound]]] <> ".wav";
+
        playCmd = "artsplay";
playCmd = playCmd <> " " <> soundFileName;
+
        soundFileName = "/dev/shm/" <> ToString[Unique["sound"]] <> ".wav";
Export[soundFileName, #1, "WAV"];
+
        playCmd = playCmd <> " " <> soundFileName;
Run[playCmd];
+
       
Run["/bin/rm -f " <> soundFileName];
+
        Export[soundFileName, #1, "WAV"];
] &
+
        Run[playCmd];
 +
        Run["/bin/rm -f " <> soundFileName];
 +
    ] &
 +
 
 
Protect[$SoundDisplayFunction]
 
Protect[$SoundDisplayFunction]
 +
 
End[];
 
End[];
 
</nowiki></pre>
 
</nowiki></pre>
 
Then add the following to <code><nowiki>~/.Mathematica/Kernel/init.m</nowiki></code>
 
Then add the following to <code><nowiki>~/.Mathematica/Kernel/init.m</nowiki></code>
 
<pre><nowiki>
 
<pre><nowiki>
Get[[UbuntuHelp:sound.m|sound.m]];
+
Get["sound.m"];
 
</nowiki></pre>
 
</nowiki></pre>
 
Try using <code><nowiki>Play[]</nowiki></code> to see if it worked.
 
Try using <code><nowiki>Play[]</nowiki></code> to see if it worked.
第108行: 第113行:
 
does the same.
 
does the same.
 
=== [: 215: ===: unexpected operator ==
 
=== [: 215: ===: unexpected operator ==
After upgrading to ubuntu 7.10 starting the kernel in Mathematica 5.2 produced the following error message twice
+
After upgrading to Ubuntu 7.10 starting the kernel in Mathematica 5.2 produced the following error message twice
 
<pre><nowiki>
 
<pre><nowiki>
 
[: 215: ==: unexpected operator
 
[: 215: ==: unexpected operator
 
</nowiki></pre>
 
</nowiki></pre>
This seems just annoying, after closing the message window everything worked fine. However, I got rid of this error message editing the first line of all scripts in Mathematica5.2/Executables
+
This is because the sh scripts uses bash syntax, and sh is not emulated by bash any more. You can fix this by editing the first line of the "math" and "Math``Kernel" scripts in Mathematica5.2/Executables from
 
<pre><nowiki>
 
<pre><nowiki>
#!/bin/sh
+
#!/bin/sh
 
</nowiki></pre>
 
</nowiki></pre>
 
to
 
to
 
<pre><nowiki>
 
<pre><nowiki>
#!/bin/bash
+
#!/bin/bash
 
</nowiki></pre>
 
</nowiki></pre>
 
=== X.org Composite Extension ===
 
=== X.org Composite Extension ===
第133行: 第138行:
 
! system resources set in:
 
! system resources set in:
 
! /usr/local/Wolfram/Mathematica/5.1/SystemFiles/FrontEnd/SystemResources/X/XMathematica
 
! /usr/local/Wolfram/Mathematica/5.1/SystemFiles/FrontEnd/SystemResources/X/XMathematica
 +
 
! Set these if you need to change what the FE uses for Primary (Command)
 
! Set these if you need to change what the FE uses for Primary (Command)
 
! and Secondary (Option) modifier keys.
 
! and Secondary (Option) modifier keys.
! this is an alternative to using xmodmap to redefine Mod3 (default [[UbuntuHelp:NumLock|NumLock]])
+
! this is an alternative to using xmodmap to redefine Mod3 (default NumLock)
 
!*primaryModifierMask: Mod2Mask
 
!*primaryModifierMask: Mod2Mask
 
*secondaryModifierMask: Mod3Mask
 
*secondaryModifierMask: Mod3Mask
第156行: 第162行:
 
xmodmap -e "remove lock = Caps_Lock"
 
xmodmap -e "remove lock = Caps_Lock"
 
</nowiki></pre>
 
</nowiki></pre>
See also http://support.wolfram.com/mathematica/systems/linux/general/configurenumlock.html
 
 
=== Locale Errors ===
 
=== Locale Errors ===
 
The bug manifests itself with:
 
The bug manifests itself with:
第171行: 第176行:
 
</nowiki></pre>
 
</nowiki></pre>
 
Also, the <code><nowiki>-noSplashScreen</nowiki></code> option should be used when starting Mathematica.
 
Also, the <code><nowiki>-noSplashScreen</nowiki></code> option should be used when starting Mathematica.
== AMD 64 Users ==
+
=== AMD 64 Users on Ubuntu 5.10 ===
=== Using Ubuntu 5.10 "Breezy Badger" ===
+
Simply due to the architecture difference, Mathematica will complain with:
Simply due to the architecture difference, Mathematica will complain with something like the following:
+
<pre><nowiki>
<pre><nowiki>#/usr/local/bin/MathKernel
+
#/usr/local/bin/MathKernel
 
MathKernel cannot determine operating system.</nowiki></pre>
 
MathKernel cannot determine operating system.</nowiki></pre>
''This can be easily remedied with a couple of small modifications.''
+
This can be remedied with this procedure:
Proceedure:
+
* First, add the following lines to the "math" script using your favorite editor:
* First, we will need to modify the "math" script, so using your favorite editor add the following lines:
+
<pre><nowiki>
==== Modifications ====
+
                                x86_64)
<pre><nowiki>                               x86_64)
+
                                        SystemIDList="Linux";;</nowiki></pre>
SystemIDList="Linux";;</nowiki></pre>
+
so that part of the script looks like this:
==== In Context ====
+
<pre><nowiki>
<pre><nowiki>#  Determine the SystemID by examining the output of `uname -s` and
+
#  Determine the SystemID by examining the output of `uname -s` and
 
#  `uname -m`. Failsafe to SystemID=Unknown.
 
#  `uname -m`. Failsafe to SystemID=Unknown.
 
if [ -z "${SystemIDList}" ]; then
 
if [ -z "${SystemIDList}" ]; then
case `uname -s` in
+
        case `uname -s` in
AIX)
+
                AIX)
SystemIDList="AIX-Power64 IBM-RISC";;
+
                        SystemIDList="AIX-Power64 IBM-RISC";;
HP-UX)
+
                HP-UX)
SystemIDList="HPUX-PA64 HP-RISC";;
+
                        SystemIDList="HPUX-PA64 HP-RISC";;
IRIX)
+
                IRIX)
SystemIDList="SGI";;
+
                        SystemIDList="SGI";;
Linux)
+
                Linux)
case `uname -m` in
+
                        case `uname -m` in
alpha)
+
                                alpha)
SystemIDList="Linux-AXP";;
+
                                        SystemIDList="Linux-AXP";;
ia64)
+
                                ia64)
SystemIDList="Linux-IA64";;
+
                                        SystemIDList="Linux-IA64";;
i?86)
+
                                i?86)
SystemIDList="Linux";;
+
                                        SystemIDList="Linux";;
# Beginning of AMD64 Modification
+
                            # Beginning of AMD64 Modification
x86_64)
+
                                x86_64)
SystemIDList="Linux";;
+
                                        SystemIDList="Linux";;
# End Modification
+
                            # End Modification
*)
+
                                *)
SystemIDList="Unknown";;
+
                                        SystemIDList="Unknown";;
esac;;
+
                        esac;;
OSF1)
+
                OSF1)
SystemIDList="DEC-AXP";;
+
                        SystemIDList="DEC-AXP";;
SunOS)
+
                SunOS)
SystemIDList="UltraSPARC Solaris";;
+
                        SystemIDList="UltraSPARC Solaris";;
*)
+
                *)
SystemIDList="Unknown";;
+
                        SystemIDList="Unknown";;
esac
+
        esac
 
fi</nowiki></pre>
 
fi</nowiki></pre>
* Next you will want to run "math" and enter in all of your registration and licensing information.
+
* Next, run "math" and enter all of your registration and licensing information.
''This step is important even though it may not seem to be at the time of doing this.  I could not seem to get the Reg spalsh screen to run for me, and Mathematica would crash out with a <code><nowiki>Segmentation Fault</nowiki></code> every time.
+
''This step is important even though it may not seem to be at the time of doing this.  I could not seem to get the Reg splash screen to run for me, and Mathematica would crash out with a <code><nowiki>Segmentation Fault</nowiki></code>.''
 
* Finally, make the same exact addition to the "mathematica" script.
 
* Finally, make the same exact addition to the "mathematica" script.
''Lower case m versus upper case M on "mathematica"
+
Now you should be able to run the "mathematica" script and have the GUI start up properly.
Now you should be able to run the "mathematica" script and have the GUI start up properly.  As far as I can tell from a few equations and a few plots things seem to run normally from here.
+
 
== External Links ==
 
== External Links ==
http://support.wolfram.com/mathematica/systems/linux/intel/
+
http://support.wolfram.com/
=== Comments ===
+
== Comments ==
From DennisKaarsemaker Tue Jun 14 13:43:21 +0100 2005
+
=== Wine ===
From: Dennis Kaarsemaker
+
Date: Tue, 14 Jun 2005 13:43:21 +0100
+
Subject: Use the shell
+
Message-ID: <20050614134321+0100@https://www.ubuntulinux.org>
+
CDRoms are mounted noexec, so use <code><nowiki>sh MathInstaller</nowiki></code>
+
==== Wine ====
+
 
Installing Mathematica with Wine 0.9.31 works, although a bit unstable. For instance, the beep generated by warning/error messages causes it to crash. A quick fix is to disable them (Preferences > Global Options > MessageOptions)
 
Installing Mathematica with Wine 0.9.31 works, although a bit unstable. For instance, the beep generated by warning/error messages causes it to crash. A quick fix is to disable them (Preferences > Global Options > MessageOptions)
[[category:CategoryDocumentation]] [[category:CategoryCleanup]]
 
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2009年11月17日 (二) 19:55的最新版本

<<Include(Tag/StyleCleanup)>> Mathematica is not free software, see ['UbuntuScience'] for alternatives.

Installation

Mathematica has an installer named Math'Installer. It is in

/cdrom/Unix/Installers/Linux

Math'Installer will not run from the CD since, by default, ubuntu mounts CDs with the noexec option. To solve this simply run the installer with the sh command

sudo sh MathInstaller

Alternatively you can copy the Linux installer to a temporary directory and run Math'Installer:

mkdir -p /tmp/Mathematica/Installers
cp -r /cdrom/Unix/Installers/Linux /tmp/Mathematica/Installers
cd /tmp/Mathematica/Installers/Linux/
./MathInstaller

After that, the script asks a series of questions, including the licensing information. It ends installing Mathematica in /usr/local, and it creates a symbolic link /usr/bin/mathematica. You may need to restart gnome to get the fonts working properly.

Autoloading Packages

Mathematica has a certain core set of functionality that is automatically available. There are also a number of "packages" that can be manually loaded to get additional functions. Examples include the Graphics and LinearAlgebra packages. If, like me, you think that these should always be available, it is easy to make it so. Simply run the commands below:

cd /usr/local/Wolfram/5.1/AddOns/StandardPackages
for i in `find -name init.m | sed s/..//` ; do mkdir -p ~/.Mathematica/Autoload/`dirname $i` ; cp $i ~/.Mathematica/Autoload/`dirname $i` ; done

This will make it so you no longer have to run <<`PackageName` to load a package; it will load as soon as you use a function from the package. The above command enables autoloading for you. Change ~/.Mathematica/AutoLoad to /usr/local/Wolfram/5.1/AddOns/AutoLoad to enable autoloading for all users. Remember to change the version number if you don't have version 5.1.

Known Issues and Workarounds

Environment Variables

A number of fixes involve setting environment variables. There are several ways to set these and have them be seen by Mathematica (or other programs). First, you can add them to your ~/.bashrc:

 export VARIABLE=value

This will make the variable visible to all programs you run from the command line. You can also set the variable when launching the program:

 VARIABLE=value Mathematica

Or you can make a launcher script like this:

 #!/bin/sh
 VARIABLE1=value1 VARIABLE2=value2 Mathematica -option1 -option2

Applet Bug

On 5.10+ there is a bug with Mathematica and the window-list and workspace-switcher applets. After starting Mathematica the applets take up 100% of CPU. If you start mathematica with no splash screen

mathematica -noSplashScreen

everything seems to work fine You can use it for creating an Ubuntu launcher.

Sound

Mathematica sound doesn't work in Linux, and Wolfram Research probably isn't going to integrate it anytime soon. Here is a workaround that should work well. It assumes that you have aRts installed and running. To install aRts,

 
sudo apt-get install arts 

To start aRts,

 
artswrapper -s 2 & 

Now, create the file ~/.Mathematica/Kernel/sound.m and copy the following Mathematica program into it.

(*
 * Set up a $SoundDisplayFunction for the
 * Linux version of Mathematica and potentially other unixes, too.
 *)
 
Begin["System`Private`"]

Unprotect[$SoundDisplayFunction]
Clear[$SoundDisplayFunction]

$SoundDisplayFunction =
    Module[{playCmd,soundFileName},
        Display[$SoundDisplay, #1];
        
        (* is there a way to get the sample rate, etc. from the audio stream? *)
        playCmd = "artsplay";
        soundFileName = "/dev/shm/" <> ToString[Unique["sound"]] <> ".wav";
        playCmd = playCmd <> " " <> soundFileName;
        
        Export[soundFileName, #1, "WAV"];
        Run[playCmd];
        Run["/bin/rm -f " <> soundFileName];
    ] &

Protect[$SoundDisplayFunction]

End[];

Then add the following to ~/.Mathematica/Kernel/init.m

Get["sound.m"];

Try using Play[] to see if it worked. The command to start aRts could be placed in init.m (personally, I start it in ~/.xsession). If you put it in init.m, then you'll probably want to suppress any error messages like this

 
artswrapper -s 2 >& /dev/null & 

If you don't like aRts, by all means use a different command to play the sounds. The sound.m file is pretty easy to follow. sound.m uses /dev/shm as a temporary directory. This means that it's fast, but also can't handle huge sound files. Change /dev/shm to, say, /tmp or ~/tmp if you're concerned.

SMP Machines

There is a bug in Mathematica 5.1 (possibly others) where certain functions take a long time or hang the Mathematica Kernel on SMP machines. An example function is LinearSolve[]. You have an SMP machine if /proc/cpuinfo lists more than one processor. The work around is to set an environment variable before launching Mathematica:

export LD_ASSUME_KERNEL=2.4.1

This tells the runtime linker (ld) to use the threading and other support libraries expected by Mathematica. On some systems,

export OMP_NUM_THREADS=1

does the same.

= [: 215: ===: unexpected operator

After upgrading to Ubuntu 7.10 starting the kernel in Mathematica 5.2 produced the following error message twice

[: 215: ==: unexpected operator

This is because the sh scripts uses bash syntax, and sh is not emulated by bash any more. You can fix this by editing the first line of the "math" and "Math``Kernel" scripts in Mathematica5.2/Executables from

 #!/bin/sh

to

 #!/bin/bash

X.org Composite Extension

Mathematica uses the Motif library (or some variant of it) to do its GUI. Motif and its variants seem to have trouble with the X.org Composite extension, which is used by xcompmgr, Xgl, Compiz, etc. It appears that just loading Composite when starting X is enough to trigger the bug; you don't have to use xcompmgr or any other compositor. This bug affects other applications (e.g. Nedit) that use a Motif variant, and is not really a bug in Mathematica. The bug basically causes bad updates to the notebook interface. If you drag the scroll bar, it will "bleed" instead of just moving. It is enough to resize the window or page up or down to cause a full redraw and fix the display, but it is very annoying. A possible workaround is

export XLIB_SKIP_ARGB_VISUALS=1

If this doesn't work, you can just be careful about dragging the scroll bar, and the problem will be minimized. You can use arrow keys, page up/down, click (not drag) in the scrollbar, or use scrollbar buttons.

Numlock / Alt / Ctrl / Backspace Problems

There are well known problems with Mathematica and X keymaps. One particular problem is an inability to use Mathematica with Numlock on (which is probably one of the more useful keys for a mathematics package...). This can be fixed with various combinations of Xresources and xmodmap. It should be enough to set some Xresources. Add the following to a file called ~/.Xresources:

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! XMathematica settings
! system resources set in:
! /usr/local/Wolfram/Mathematica/5.1/SystemFiles/FrontEnd/SystemResources/X/XMathematica

! Set these if you need to change what the FE uses for Primary (Command)
! and Secondary (Option) modifier keys.
! this is an alternative to using xmodmap to redefine Mod3 (default NumLock)
!*primaryModifierMask: Mod2Mask
*secondaryModifierMask: Mod3Mask

Then set them with

xrdb -merge ~/.Xresources

or

xrdb -merge ~/.Xresources

You can add the above line to a script that is run at login (e.g., ~/.xsession or ~/.xinitrc) to set them every time you login. You can see all of the Xresources Mathematica recognizes (and their defaults) in the file mentioned above. The other thing to look at is xmodmap, which is used to (re)define keymappings. The following works for me in conjunction with the above Xresources (these were done a long time ago, and I'm pretty sure that these don't address Mathematica problems).

xmodmap -e "keycode 115 = Super_L"
xmodmap -e "keycode 116 = Super_R"
xmodmap -e "keycode 117 = Menu"
xmodmap -e "add mod4 = Super_L Super_R"
xmodmap -e "remove lock = Caps_Lock"

Locale Errors

The bug manifests itself with:

  • error complaining about the locale settings
  • lots of lines repeating various blends of "Warning: translation table syntax error"
  • window list applet got stuck when the splash screen appeared
  • segmentation fault & Mathematica death

A workaround is:

cd /usr/X11R6/lib/X11/
sudo mv locale locale.bck
sudo ln -s /usr/share/X11/XKeysymDB XKeysymDB
sudo ln -s /usr/share/X11/locale/ locale

Also, the -noSplashScreen option should be used when starting Mathematica.

AMD 64 Users on Ubuntu 5.10

Simply due to the architecture difference, Mathematica will complain with:

#/usr/local/bin/MathKernel
MathKernel cannot determine operating system.

This can be remedied with this procedure:

  • First, add the following lines to the "math" script using your favorite editor:
                                x86_64)
                                        SystemIDList="Linux";;

so that part of the script looks like this:

#  Determine the SystemID by examining the output of `uname -s` and
#  `uname -m`. Failsafe to SystemID=Unknown.
if [ -z "${SystemIDList}" ]; then
        case `uname -s` in
                AIX)
                        SystemIDList="AIX-Power64 IBM-RISC";;
                HP-UX)
                        SystemIDList="HPUX-PA64 HP-RISC";;
                IRIX)
                        SystemIDList="SGI";;
                Linux)
                        case `uname -m` in
                                alpha)
                                        SystemIDList="Linux-AXP";;
                                ia64)
                                        SystemIDList="Linux-IA64";;
                                i?86)
                                        SystemIDList="Linux";;
                             # Beginning of AMD64 Modification
                                x86_64)
                                        SystemIDList="Linux";;
                             # End Modification
                                *)
                                        SystemIDList="Unknown";;
                        esac;;
                OSF1)
                        SystemIDList="DEC-AXP";;
                SunOS)
                        SystemIDList="UltraSPARC Solaris";;
                *)
                        SystemIDList="Unknown";;
        esac
fi
  • Next, run "math" and enter all of your registration and licensing information.

This step is important even though it may not seem to be at the time of doing this. I could not seem to get the Reg splash screen to run for me, and Mathematica would crash out with a Segmentation Fault.

  • Finally, make the same exact addition to the "mathematica" script.

Now you should be able to run the "mathematica" script and have the GUI start up properly.

External Links

http://support.wolfram.com/

Comments

Wine

Installing Mathematica with Wine 0.9.31 works, although a bit unstable. For instance, the beep generated by warning/error messages causes it to crash. A quick fix is to disable them (Preferences > Global Options > MessageOptions)