Installing MATLAB 2016a onto ubuntu 16.04?
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
3
down vote
favorite
Hey I recently built a computer and put ubuntu 16.04 onto it. Now I'm going through and adding different software packages. One of them that I got is MATLAB 2016a which I have no idea how to install on a Linux system. I've really never used one before so please excuse the learning curve. Could someone point me in the right direction on how to go about doing this?
I have the downloaded the zip file but I can't seem to extract the file. That seem to be the portion I'm stuck on. Thanks in advance.
software-installation matlab
add a comment |Â
up vote
3
down vote
favorite
Hey I recently built a computer and put ubuntu 16.04 onto it. Now I'm going through and adding different software packages. One of them that I got is MATLAB 2016a which I have no idea how to install on a Linux system. I've really never used one before so please excuse the learning curve. Could someone point me in the right direction on how to go about doing this?
I have the downloaded the zip file but I can't seem to extract the file. That seem to be the portion I'm stuck on. Thanks in advance.
software-installation matlab
Take a look at the instructions for Linux at mathworks.com/help/install/ug/install-mathworks-software.html.
â edwinksl
Sep 11 '16 at 23:02
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
Hey I recently built a computer and put ubuntu 16.04 onto it. Now I'm going through and adding different software packages. One of them that I got is MATLAB 2016a which I have no idea how to install on a Linux system. I've really never used one before so please excuse the learning curve. Could someone point me in the right direction on how to go about doing this?
I have the downloaded the zip file but I can't seem to extract the file. That seem to be the portion I'm stuck on. Thanks in advance.
software-installation matlab
Hey I recently built a computer and put ubuntu 16.04 onto it. Now I'm going through and adding different software packages. One of them that I got is MATLAB 2016a which I have no idea how to install on a Linux system. I've really never used one before so please excuse the learning curve. Could someone point me in the right direction on how to go about doing this?
I have the downloaded the zip file but I can't seem to extract the file. That seem to be the portion I'm stuck on. Thanks in advance.
software-installation matlab
software-installation matlab
asked Sep 11 '16 at 23:00
Paul J
16112
16112
Take a look at the instructions for Linux at mathworks.com/help/install/ug/install-mathworks-software.html.
â edwinksl
Sep 11 '16 at 23:02
add a comment |Â
Take a look at the instructions for Linux at mathworks.com/help/install/ug/install-mathworks-software.html.
â edwinksl
Sep 11 '16 at 23:02
Take a look at the instructions for Linux at mathworks.com/help/install/ug/install-mathworks-software.html.
â edwinksl
Sep 11 '16 at 23:02
Take a look at the instructions for Linux at mathworks.com/help/install/ug/install-mathworks-software.html.
â edwinksl
Sep 11 '16 at 23:02
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
6
down vote
If
unzip
command isn't already installed in your system, run:sudo apt-get install unzip
Go to the directory you downloaded Matlab .zip file:
cd /path/to/download/directory
Unzip the file:
unzip downloaded_matlab_zip_file.zip -d matlab_destination_directory
Navigate to
matlab_destination_directory
:cd matlab_destination_directory
Run the Matlab installer:
./install
Follow these installation steps from the vendor.
Alright thank you. I was a bit lost but was able to get the installation going with these instructions.
â Paul J
Sep 11 '16 at 23:58
add a comment |Â
up vote
2
down vote
Important hint: The MATLAB installation wizard may get stuck creating the installation directory (by default /usr/local/MATLAB/R2016a
) because it does not have enough write permissions. If that happens, the easy solution is to run the Matlab installer as a super user
sudo ./install
A useful post regarding this issue in particular is here:
How to get permissions to a folder in an installation process?
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
6
down vote
If
unzip
command isn't already installed in your system, run:sudo apt-get install unzip
Go to the directory you downloaded Matlab .zip file:
cd /path/to/download/directory
Unzip the file:
unzip downloaded_matlab_zip_file.zip -d matlab_destination_directory
Navigate to
matlab_destination_directory
:cd matlab_destination_directory
Run the Matlab installer:
./install
Follow these installation steps from the vendor.
Alright thank you. I was a bit lost but was able to get the installation going with these instructions.
â Paul J
Sep 11 '16 at 23:58
add a comment |Â
up vote
6
down vote
If
unzip
command isn't already installed in your system, run:sudo apt-get install unzip
Go to the directory you downloaded Matlab .zip file:
cd /path/to/download/directory
Unzip the file:
unzip downloaded_matlab_zip_file.zip -d matlab_destination_directory
Navigate to
matlab_destination_directory
:cd matlab_destination_directory
Run the Matlab installer:
./install
Follow these installation steps from the vendor.
Alright thank you. I was a bit lost but was able to get the installation going with these instructions.
â Paul J
Sep 11 '16 at 23:58
add a comment |Â
up vote
6
down vote
up vote
6
down vote
If
unzip
command isn't already installed in your system, run:sudo apt-get install unzip
Go to the directory you downloaded Matlab .zip file:
cd /path/to/download/directory
Unzip the file:
unzip downloaded_matlab_zip_file.zip -d matlab_destination_directory
Navigate to
matlab_destination_directory
:cd matlab_destination_directory
Run the Matlab installer:
./install
Follow these installation steps from the vendor.
If
unzip
command isn't already installed in your system, run:sudo apt-get install unzip
Go to the directory you downloaded Matlab .zip file:
cd /path/to/download/directory
Unzip the file:
unzip downloaded_matlab_zip_file.zip -d matlab_destination_directory
Navigate to
matlab_destination_directory
:cd matlab_destination_directory
Run the Matlab installer:
./install
Follow these installation steps from the vendor.
edited Sep 1 '17 at 9:23
![](https://i.stack.imgur.com/8CW8e.png?s=32&g=1)
![](https://i.stack.imgur.com/8CW8e.png?s=32&g=1)
Zanna
48k13119227
48k13119227
answered Sep 11 '16 at 23:19
![](https://lh4.googleusercontent.com/-bAvlb0t6gV4/AAAAAAAAAAI/AAAAAAAABeI/LJ5w8hMUs6Q/photo.jpg?sz=32)
![](https://lh4.googleusercontent.com/-bAvlb0t6gV4/AAAAAAAAAAI/AAAAAAAABeI/LJ5w8hMUs6Q/photo.jpg?sz=32)
Thiago Rider Augusto
9133927
9133927
Alright thank you. I was a bit lost but was able to get the installation going with these instructions.
â Paul J
Sep 11 '16 at 23:58
add a comment |Â
Alright thank you. I was a bit lost but was able to get the installation going with these instructions.
â Paul J
Sep 11 '16 at 23:58
Alright thank you. I was a bit lost but was able to get the installation going with these instructions.
â Paul J
Sep 11 '16 at 23:58
Alright thank you. I was a bit lost but was able to get the installation going with these instructions.
â Paul J
Sep 11 '16 at 23:58
add a comment |Â
up vote
2
down vote
Important hint: The MATLAB installation wizard may get stuck creating the installation directory (by default /usr/local/MATLAB/R2016a
) because it does not have enough write permissions. If that happens, the easy solution is to run the Matlab installer as a super user
sudo ./install
A useful post regarding this issue in particular is here:
How to get permissions to a folder in an installation process?
add a comment |Â
up vote
2
down vote
Important hint: The MATLAB installation wizard may get stuck creating the installation directory (by default /usr/local/MATLAB/R2016a
) because it does not have enough write permissions. If that happens, the easy solution is to run the Matlab installer as a super user
sudo ./install
A useful post regarding this issue in particular is here:
How to get permissions to a folder in an installation process?
add a comment |Â
up vote
2
down vote
up vote
2
down vote
Important hint: The MATLAB installation wizard may get stuck creating the installation directory (by default /usr/local/MATLAB/R2016a
) because it does not have enough write permissions. If that happens, the easy solution is to run the Matlab installer as a super user
sudo ./install
A useful post regarding this issue in particular is here:
How to get permissions to a folder in an installation process?
Important hint: The MATLAB installation wizard may get stuck creating the installation directory (by default /usr/local/MATLAB/R2016a
) because it does not have enough write permissions. If that happens, the easy solution is to run the Matlab installer as a super user
sudo ./install
A useful post regarding this issue in particular is here:
How to get permissions to a folder in an installation process?
edited Apr 13 '17 at 12:23
Communityâ¦
1
1
answered Nov 19 '16 at 10:45
Hazem
254
254
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f823778%2finstalling-matlab-2016a-onto-ubuntu-16-04%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Take a look at the instructions for Linux at mathworks.com/help/install/ug/install-mathworks-software.html.
â edwinksl
Sep 11 '16 at 23:02