./install in terminal gives error "sudo: ./install: command not found"
조회 수: 23 (최근 30일)
이전 댓글 표시
I want to install Matlab in Ubuntu. I downloaded the latest version of matlab software, unziped, In the terminal chaged the current directory to the file where i extracted the matlab installation file. I tried the command " sudo ./install" it gives following error "sudo: ./install: command not found" I also observed, there is no file name install in the installation folder
댓글 수: 7
Walter Roberson
2019년 9월 30일
If ./install exists in your current directory, and you are using Linux, but sudo ./install says that the command is not found, then you might be accessing a filesystem that has the no-execute flag set. In that case you can try
sudo sh ./install
답변 (1개)
Riadus Salehin
2021년 2월 15일
it says 'sh: 0: Can't open ./install'
댓글 수: 10
Walter Roberson
2021년 2월 18일
Could still be -noexec problem or needs
sudo chmod -r ugo+x .
The final period is part of the command
Patrice Gaofei
2021년 2월 19일
Dear Mr. @Walter Roberson, I am very grateful for your time and help. It seems like the problem was from the way I extracted the installation files from the MATLAB ISO file downloaded online. I had to mount the iso file following the steps in this link.
Then, I activated the installed Matlab following this link
It took me almost three days. I will now proceed with installing other tools and packages.
I am sharing this in case it might help others.
Regards,
참고 항목
카테고리
Help Center 및 File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!