Difference between revisions of "AnyWave:Download"

From WikiMEG
Jump to: navigation, search
(Donwload AnyWave)
(Linux)
Line 12: Line 12:
 
Open the dmg file and run the installer.
 
Open the dmg file and run the installer.
 
==Linux==
 
==Linux==
A Debian package is provided for Debian based distributions. (The package was built under Debian 9.2) <br />
+
The linux installation package is an archive containing all the files required to install on your system.<br />
Installation: Double click on the .deb file or use '''dpkg -I''' ''<file>'' in a terminal.<br />
+
Uncompress the zip and launch the install.sh script as super user.<br />
<br />
+
AnyWave will be installed in /usr/local/AnyWave (this will allow MATLAB plugins to run correctly).<br />
For other distribution you may choose to download the .tar.gz package and follow the instructions to install it: <br />
+
This package was built on Debian using gcc 4.9 so it should run on other distros.<br />
- uncompress the archive file.<br />
+
OpenBlas and tcsh are required by AnyWave Linux and is not included in the package. (tcsh is optionnal if you don't use MATLAB plugins).<br />
- run install.sh script<br />
+
==Install extra dependencies==
<br />
+
Examples on Centos and Debian<br />
'''IMPORTANT NOTE:'''<br />
+
If your are installing using the archive (.tar.gz) file, you will need to install some third party librairies :  HDF5, matio, tcsh<br />
+
Depending on your distribution you may have to use:<br />
+
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
yum install -y hdf5 matio tcsh
+
yum install -y tcsh openblas
apt-get install libhdf5 libmatio tcsh
+
apt-get install tcsh openblas
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 10:28, 11 April 2018

Donwload AnyWave

Windows logo.png OSX logo.png Linux logo.png

Install AnyWave

Windows

Once you've donwloaded the zip file, just unzip it and run setup.exe. Follow instructions to install AnyWave on your system.

Mac OS X

Open the dmg file and run the installer.

Linux

The linux installation package is an archive containing all the files required to install on your system.
Uncompress the zip and launch the install.sh script as super user.
AnyWave will be installed in /usr/local/AnyWave (this will allow MATLAB plugins to run correctly).
This package was built on Debian using gcc 4.9 so it should run on other distros.
OpenBlas and tcsh are required by AnyWave Linux and is not included in the package. (tcsh is optionnal if you don't use MATLAB plugins).

Install extra dependencies

Examples on Centos and Debian

yum install -y tcsh openblas
apt-get install tcsh openblas