Why do I get a permission denied error message referring to folder when installing MATLAB on Macbook?
3 ビュー (過去 30 日間)
古いコメントを表示
After installing the Matlab in macbook and run LeadDBS into it, I'm dealing with this problem:
bash: /Users/Documents/MATLAB/lead/ext_libs/ANTs/antsRegistration.maci64: Permission denied
bash: /Users/Documents/MATLAB/lead/ext_libs/ANTs/antsApplyTransforms.maci64: Permission denied
8 件のコメント
yannick LONGUET
2023 年 6 月 26 日
I found the answer, you can write :
system(['find "', ea_getearoot, '" -type f -name "*maci64" -exec chmod 755 {} \;']);
system(['find "', ea_getearoot, '" -type f -name "*maci64" -exec xattr -cr {} \;']);
system(['find "', fileparts(which('spm')), '" -type f -name "*maci64" -exec xattr -cr {} \;']);
system(['find "', ea_getearoot, '" -type d -name "*.app" -exec xattr -cr {} \;']);
in the command window
回答 (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!