8

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?

Szabolcs
  • 234,956
  • 30
  • 623
  • 1,263
M.R.
  • 31,425
  • 8
  • 90
  • 281

3 Answers3

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.

Szabolcs
  • 234,956
  • 30
  • 623
  • 1,263
Dusty
  • 91
  • 3
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"

Szabolcs
  • 234,956
  • 30
  • 623
  • 1,263
tessad
  • 31
  • 1
  • 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