Clear Filters
Clear Filters

I try installing matlab2021b on ubuntu 18.08, bue the installer does not find the product files.

6 views (last 30 days)
I try installing matlab2021b on ubuntu 18.08, I have download de matlab_R2021_glnxa64.zip, unzip, I have download the license key and license file. I have rewrite the intaller_input.txt file with requiered data. Then I run in the terminal "./install -inputfile intaller_input.txt" and the output log error says: " it was no possible to load the product files. The files of product must be in the same folder that the input file." But I am working in the unziped folder, I have not moved any file.

Answers (1)

Abhishek Chakram
Abhishek Chakram on 29 Apr 2024
Hi Iratxe Landa Sedano,
It appears you are encountering an issue where the MATLAB installer cannot find the product files necessary for installation, despite you seemingly having everything set up correctly. Here are few troubleshooting steps for the same:
  • Ensure you are in the correct directory where all the MATLAB installation files are located. You can verify your current directory by running the “pwd” command in the terminal. The output should be the path to the directory containing the MATLAB installation files.
pwd
  • Make sure all necessary files, especially the “install” script and the “installer_input.txt” file, are in the root of the unzipped folder
  • Ensure you have execution permissions for the “install” script. You can set this by running “chmod +x install” in the terminal within the directory of the unzipped files.
chmod +x install
  • If the file is indeed named “installer_input.txt”, the correct command to start the installation would be the following
./install -inputFile installer_input.txt
I hope this helps!
Best Regards,
Abhishek Chakram

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!