Can I uninstall specific MATLAB toolboxes on Linux or Unix?

조회 수: 7 (최근 30일)
I would like to remove the installation of a toolbox in a convenient way.
rm -rf $MATLAB
removes the entire installation, but I would like to have a simplified option to remove specific toolboxes.

채택된 답변

MathWorks Support Team
MathWorks Support Team 2012년 10월 19일
To uninstall MATLAB on UNIX or Linux, use the following command:
rm -r $MATLABROOT
where $MATLABROOT is your root MATLAB directory.
To remove a toolbox, remove all files the toolbox directory with the command:
rm -r $MATLABROOT/toolbox/<toolbox_name>
You may also want to remove the corresponding INCREMENT line in the license file. This file can be found in MATLAB's "etc" directory. Open this with a text editor (vi, pico, etc), locate the INCREMENT line that refers to the toolbox in question, and remove that section.

추가 답변 (0개)

카테고리

Help CenterFile 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!

Translated by