You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can then use the [matlab package manager](https://github.com/mobeets/mpm), to simply download the appropriate version of those dependencies and add them to your path by running a `getDependencies` function like the one below where you just need to replace `YOUR_EXPERIMENT_NAME` by the name of your experiment.
44
+
45
+
46
+
```matlab
47
+
function getDependencies(action)
48
+
% Will install on your computer the matlab dependencies specified in the mpm-requirements.txt
49
+
% and add them to the matlab path. The path is never saved so you need to run getDependencies() when
50
+
% you start matlab.
51
+
%
52
+
% getDependencies('update') will force the update and overwrite previous version of the dependencies.
53
+
%
54
+
% getDependencies() If you only already have the appropriate version but just want to add them to the matlab path.
0 commit comments