system - wget
이전 댓글 표시
Hi,
I am using MatLab on a Linux system (openSUSE 11.4) and am trying to use the wget command within the matlab system command. I have the syntax etc correct however I cannot get it to work.
I have followed suggestions here: http://www.mathworks.de/matlabcentral/newsreader/view_thread/162466 editing "LDPATH_PREFIX" in matlab/bin/.matlab7rc.sh and adding links in the folder to system libraries which has solved a "`GLIBCXX_3.4.9' not found" issue. However, I now get the following error message: "wget: symbol lookup error: /usr/lib64/libkdecore.so.5: undefined symbol: _ZN9QListData11detach_growEPii" I assums I need to provide matlab some more links to system libraries but I am not sure which.
I am sure wget works on this system as it functions correctly from the terminal but not fromm within matlab r2011a.
Thanks
답변 (1개)
Kaustubha Govind
2011년 10월 12일
Inside MATLAB, run:
>> !printenv LD_LIBRARY_PATH
or
>> system('printenv LD_LIBRARY_PATH')
and see if it matches the output of
$ printenv LD_LIBRARY_PATH
in the terminal. Perhaps you could try adding any missing paths to LDPATH_PREFIX.
카테고리
도움말 센터 및 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!