How to Install additional toolbox of MATLAB in Ubuntu using Add-ones?
110 ビュー (過去 30 日間)
古いコメントを表示
I am using Ubuntu 18.04.I am using MATLAB R2019b Version.I want to add Global Optimization toolbox in MATLAB but whenever I try to install any Toolbox, it shows me Unable to write!! I am attaching screenshot of error message. Can anyone suggests me how should I proceed??
6 件のコメント
Nicolas
2023 年 12 月 28 日
you must run matlab with sudo to update add-ons.
in a console:
sudo matlab
and then, try again!
Noah Curran
2024 年 7 月 31 日
編集済み: Noah Curran
2024 年 7 月 31 日
Wendelin's solution worked like a charm. Nicolas's requires giving a license to the root user which I believe is inadvisible, though it should also work.
回答 (1 件)
Aditya
約22時間 前
The error message you're seeing is likely due to insufficient write permissions for the directory
'/usr/local/MATLAB/R2019b'. This is a common issue when trying to modify system directories as a non-root user. Here's how you can resolve it:
open a terminal and run the following command to change the ownership of the directory to your user account:
sudo chown -R yourusername:yourusername /usr/local/MATLAB/R2019b
Replace the 'yourusername' with your actual ubuntu user name.
You can also refer to the similar MATLAB Answers post:
- https://in.mathworks.com/matlabcentral/answers/479958-installer-does-not-have-sufficient-permissions-to-install-this-add-on-add-ons-installation-folder
- https://in.mathworks.com/matlabcentral/answers/2097931-matlab-unable-to-install-add-ons
Hope this helps!
0 件のコメント
参考
カテゴリ
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!