... | @@ -20,7 +20,40 @@ Linux version of AnyWave will run in a docker container. |
... | @@ -20,7 +20,40 @@ Linux version of AnyWave will run in a docker container. |
|
2. The link sent to you when you request the download will give you the name of the docker repository to pull.
|
|
2. The link sent to you when you request the download will give you the name of the docker repository to pull.
|
|
3. run the application using the following script:
|
|
3. run the application using the following script:
|
|
````bash
|
|
````bash
|
|
docker run
|
|
docker run -it --rm \
|
|
|
|
-e DISPLAY=$DISPLAY \
|
|
|
|
-e QT_X11_NO_MITSHM=1 \
|
|
|
|
-v /tmp/.X11-unix:/tmp/.X11-unix \
|
|
|
|
--user $(id -u):$(id -g) \
|
|
|
|
-v /mnt:/mnt \
|
|
|
|
-v /home/$USER/AnyWave:/home/appuser/AnyWave \
|
|
|
|
-v "/home/$USER/.config/INSERM U1106":"/home/appuser/.config/INSERM U1106" \
|
|
|
|
bcolombet/anywave:latest
|
|
|
|
````
|
|
|
|
|
|
|
|
If you wan to use MATLAB or Compiled MATLAB plugins and thus the MATLAB Runtime :
|
|
|
|
1. install MATLAB on your Linux.
|
|
|
|
2. install the MATLAB Runtime on your Linux.
|
|
|
|
3. add the following two lines to the script above just before the last line:
|
|
|
|
````bash
|
|
|
|
docker run -it --rm \
|
|
|
|
-e DISPLAY=$DISPLAY \
|
|
|
|
-e QT_X11_NO_MITSHM=1 \
|
|
|
|
-v /tmp/.X11-unix:/tmp/.X11-unix \
|
|
|
|
--user $(id -u):$(id -g) \
|
|
|
|
-v /mnt:/mnt \
|
|
|
|
-v /home/$USER/AnyWave:/home/appuser/AnyWave \
|
|
|
|
-v "/home/$USER/.config/INSERM U1106":"/home/appuser/.config/INSERM U1106" \
|
|
|
|
-v /usr/local/MATLAB/R2024b:/usr/local/MATLAB/R2024b \
|
|
|
|
-v /usr/local/MATLAB/MATLAB_Runtime/R2024b:/usr/local/MATLAB/MATLAB_Runtime/R2024b \
|
|
|
|
bcolombet/anywave:latest
|
|
|
|
````
|
|
|
|
Change the paths for MATLAB depending on the released version used and/or the install location.
|
|
|
|
PLEASE not that you must mount on /usr/local/MATLAB/R... on the docker container.
|
|
|
|
For example if your MATLAB is installed in /home/johndoe/MATLAB use the following lines:
|
|
|
|
````bash
|
|
|
|
-v /home/johndoe/MATLAB/R2024b:/usr/local/MATLAB/R2024b \
|
|
|
|
-v /home/johndoe/MATLAB/MATLAB_Runtime/R2024b:/usr/local/MATLAB/MATLAB_Runtime/R2024b \
|
|
````
|
|
````
|
|
|
|
|
|
# [Documentation](/anywave/documentation/-/wikis/TOC)
|
|
# [Documentation](/anywave/documentation/-/wikis/TOC)
|
... | | ... | |