How can I install a MATLAB Toolbox from the command line without a GUI?
65 views (last 30 days)
Show older comments
I need to install the Deep Learning Toolbox Model for VGG-16 Network from the command line because I don't have a GUI. Anyone can help? Thanks in advance.
0 Comments
Accepted Answer
David Willingham
on 7 Jun 2021
Hi Pablo,
There are 2 ways which you could get VGG-16 from the command line:
Approach1: This approach will get you the network, but not all of the support package. It won't show up as a preinstalled model in Deep Network designed, but you can load it manually:
To get the network, run this code in MATLAB:
vgg19_18a_tar_gz = matlab.internal.examples.downloadSupportFile( "nnet", "/data/vgg19_18a.tar.gz" )
vgg19_18a_tar = gunzip(vgg19_18a_tar_gz)
vgg19_18a = untar(vgg19_18a_tar{1})
load vgg19
deepNetworkDesigner(vgg19)
Approach2: Offline down the support package and transfer to a target machine: https://www.mathworks.com/matlabcentral/answers/293235-how-do-i-download-and-install-a-support-package-on-an-offline-machine
I hope this helps,
David
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!