Page 1 of 1
Mathematica download?
Posted: Mon Nov 25, 2013 1:03 pm
by nutshelluniverse
Can anyone suggest a way to download the Mathematica .deb package using a web browser?
The reasoning behind this is that at home it will take ages to download while where I am now will take much less time.
Re: Mathematica download?
Posted: Mon Nov 25, 2013 11:33 pm
by thegink
The package is at:
http://archive.raspberrypi.org/debian/p ... am-engine/
You should be able to install it using dpkg:
Code: Select all
sudo dpkg -i wolfram-engine_10.0.0+2013112003_armhf.deb
Re: Mathematica download?
Posted: Tue Nov 26, 2013 1:25 am
by dennisw
Try:
http://archive.raspberrypi.org/debian/p ... _armhf.deb
Then one method to install it is:
sudo dpkg -i wolfram-engine_10.0.0+2013112003_armhf.deb
sudo apt-get install -f --fix-missing
Re: Mathematica download?
Posted: Tue Nov 26, 2013 6:46 am
by nutshelluniverse
Re: Mathematica download?
Posted: Wed Nov 27, 2013 2:23 am
by elmsley
Awesome, for some reason apt-get fails after a long while, I'm going to curl it.
Re: Mathematica download?
Posted: Wed Nov 27, 2013 9:23 pm
by mjwilli
I downloaded wolfram-engine and the only thing that shows up is Wolfram Language.
Typing in /user/bin/Mathematica returns a message saying no such file. ???????
Help!
Re: Mathematica download?
Posted: Thu Nov 28, 2013 1:58 am
by dennisw
Try all lower case (and no "e" in "usr"):
Re: Mathematica download?
Posted: Thu Nov 28, 2013 8:34 am
by nutshelluniverse
elmsley wrote:Awesome, for some reason apt-get fails after a long while, I'm going to curl it.
How do you do that? On my Pi, it said memory was low and aborted the install (I use an 8gb SD card with only a few python programs and RPi.GPIO and Numpy installed)
Re: Mathematica download?
Posted: Thu Nov 28, 2013 3:32 pm
by mjwilli
Thanks, I removed wolfram-engine and reloaded it and everything works fine now!
Re: Mathematica download?
Posted: Fri Nov 29, 2013 3:40 pm
by elmsley
nutshelluniverse wrote:elmsley wrote:Awesome, for some reason apt-get fails after a long while, I'm going to curl it.
How do you do that? On my Pi, it said memory was low and aborted the install (I use an 8gb SD card with only a few python programs and RPi.GPIO and Numpy installed)
This command sticks the file in your local filesystem.
curl
http://archive.raspberrypi.org/debian/p ... _armhf.deb > wolfram-engine_10.0.0+2013112003_armhf.deb
then you can unpackage it using the commands in the previous post. You may also want to try:
df -k
which tells you how much space you have left in each filesystem.
Most likely that's your issue, you can use the raspi-config menu system to extend the root filesystem to use all your card. Whichever directory you are in, you can check which file system it is associated with by typing:
df -k .
(don't forget the trailing dot ".") and it will tell you the info for the specific file system.
Good luck!