I have a Raspberry Pi 3, and it comes preinstalled with Mathematica 10, I was hoping someone could tell me if installing version 11.0 is possible?
Asked
Active
Viewed 1,298 times
8
-
4It will be possible (when 11 is released for the Raspberry Pi). – ilian Nov 02 '16 at 18:24
-
1Raspbian is technically a version of Linux though no? – M.R. Nov 02 '16 at 18:32
-
3Yes, however the CPU architecture is ARM, so the regular Linux release cannot run on it. – ilian Nov 02 '16 at 18:33
-
@ilian Does WRI have a site tracking the latest release for raspbian? – M.R. Nov 13 '16 at 22:30
-
No, not that I know of. – ilian Nov 15 '16 at 17:50
3 Answers
10
Mathematica 11.0.1 has been just released for the Raspberry Pi.
$Version
(* "11.0.1 for Linux ARM (32-bit) (January 17, 2017)" *)
As usual, one may immediately upgrade via apt-get.
ilian
- 25,474
- 4
- 117
- 186
3
Depending upon all things configuration, from the terminal on an aged New Out Of Box Software RPi try
sudo apt-get update && sudo apt-get upgrade && sudo apt-get dist-upgrade
to upgrade Mathmatica to 11 along with everything else.
sudo apt-get install wolfram-engine
may work as well.
3
Mathematica 11.2 is available on the Raspberry Pi but doesn't seem to automatically update. But you can console yourself with "sudo apt-get upgrade wolfram-engine"
-
I did get the update automatically with a simple
sudo apt update,sudo apt upgrade. But I am told it's not compatible with Jessie so I upgraded to Stretch first. Are you on Stretch? – Szabolcs Jan 30 '18 at 16:34