Installing kratos in macOS
(→Install Boost) |
(→Install CMake) |
||
Line 125: | Line 125: | ||
== Install CMake == | == Install CMake == | ||
− | CMake is the tool used to compile Kratos. '''Download''' the '''CMake''' latest release for your Mac version in https://cmake.org/download/ . In our case it was CMake 3. | + | CMake is the tool used to compile Kratos. '''Download''' the '''CMake''' latest release for your Mac version in https://cmake.org/download/ . In our case it was CMake 3.6.2. Open the downloaded file, e.g. "cmake-3.6.2-Darwin-x86_64.dmg", and agree the License Agreement terms. Then '''drag and drop''' the CMake application into your Applications folder. After that you can eject "cmake-3.6.2-Darwin-x86_64" and erase it to save space. |
Finally go to your Applications folder and '''right-click CMake.app''' to open it. Then you can quit CMake (''cmd+q''). | Finally go to your Applications folder and '''right-click CMake.app''' to open it. Then you can quit CMake (''cmd+q''). |
Revision as of 20:52, 25 September 2016
Contents |
Introduction
This section is devoted to explain the necessary steps for the installation of Kratos in macOS. This tutorial has been tested in OS X El Capitan (OS X 10.11) and macOS Sierra (macOS 10.12). If someone is interested in the old installation tutorial of Kratos in OS X Leopard see http://kratos-wiki.cimne.upc.edu/index.php/MacOSX_Installation.
The tutorial assumes that the user has a basic knowledge of macOS and Unix (navigate between directories in Terminal, copy files, execute commands...).
Install Xcode
The first step is to obtain the latest version of Xcode. Open the App Store and look for "xcode" in the search box. Select Xcode and start the installation. Bear in mind that all the packages require 4.4 GB of disk space and so this step can take quite a lot of time.
If you had previously installed Xcode, it is advisable to open the App Store and go to Updates to check whether you have the latest version of Xcode. In the moment of writing this tutorial, the latest version was Xcode 8.0.
Once the installation finishes, open Xcode in order to agree the terms of the software license agreements and complete the installation of components. After that you can quit Xcode (cmd+q). Before going on, it is also recommended to verify that the Command Line Tools are properly installed. To do so, open a Terminal (press cmd+space, write "terminal" and hit enter) and use the following command:
xcode-select --install
If a window appears asking whether you want to install the tools now, click on "Install". You must agree the Command Line Tools License Agreement to proceed with the installation. When Xcode is properly installed, you will see the following message every time you run the "xcode-select --install" command.
xcode-select: error: command line tools are already installed, use "Software Update" to install updates
Install Clang with OMP support
Since the default Clang compiler on Xcode does not have an OpenMP implementation, here we will install a Clang version compatible with OMP. First, you need to install Homebrew (http://brew.sh), a package manager for macOS. Paste the following line at a Terminal and follow the instructions:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Once the installation is completed, type these two commands:
brew tap homebrew/boneyard brew install clang-omp
Agree if you are asked to download necessary additional packages and, after a while, you should have clang-omp ready to use. Try asking for clang-omp location to check that it is properly installed:
which clang-omp
If you did not modify the default installation directory clang-omp should be in "/usr/local/bin".
Download Kratos
Next we must download the Kratos Multiphysics source code by means of a subversion manager. The Command Line Tools installed with Xcode already include Apache Subverison, thus we just need to open a Terminal and use the following command:
svn co https://svn.cimne.upc.edu/p/kratos/kratos
It is possible that you get an error message in the validation of the server certificate, for which you will be asked to either reject, accept temporarily or accept permanently the certificate. You need to accept it permanently, thus write p and then press enter. If the download does not start, use again the command "svn co https://svn.cimne.upc.edu/p/kratos/kratos" and wait until you see a message like
Checked out revision 12691.
with the latest revision number. After that, you should have the latest revision of Kratos in the folder "/Users/youruser/kratos".
Install Python
Download the latest version of Python 3 compatible with your mac from https://www.python.org/downloads/mac-osx/ . In the moment of writing this text the latest version was Python 3.5.2. Right-click on the downloaded file, e.g. "python-3.5.2-macosx10.6.pkg", and open it to initialise the installation wizard of Python. Once Python 3 is installed, you can erase the downloaded package to save space. Moreover, to check that Python 3 is properly configured, open a Terminal and run the following command to see the version
python3 --version
Install Boost
Kratos Multiphysics needs Boost libraries to support some of its functions. Download the latest compatible version of Boost from its official website http://www.boost.org/users/history/ . This tutorial has been tested with version 1.61.0. You can use any version from 1.54 onward except for 1.60.
Open the downloaded file "boost_1_61_0.tar.bz2" to obtain a folder named "boost_1_61_0". You can then erase the compressed file and move the resulting folder into "/Users/youruser/kratos/external_libraries/".
Open a Terminal and navigate to the Boost folder, i.e.
cd cd kratos/external_libraries/boost_1_61_0/
Then execute the following command:
./bootstrap.sh
Now we must modify the generated configuration file "project-config.jam" to indicate that we are going to use Python 3 instead of Python 2. Open the file with the following command:
open -e project-config.jam
and modify the Python configuration section substituting the line in red by the one in green:
# Boost.Build Configuration # Automatically generated by bootstrap.sh import option ; import feature ; # Compiler configuration. This definition will be used unless # you already have defined some toolsets in your user-config.jam # file. if ! darwin in [ feature.values <toolset> ] { using darwin ; } project : default-build <toolset>darwin ; # Python configuration import python ; if ! [ python.configured ] { using python : 2.7 : /System/Library/Frameworks/Python.framework/Versions/2.7 ; using python : 3.5 : /Library/Frameworks/Python.framework/Versions/3.5 : /Library/Frameworks/Python.framework/Versions/3.5/include/python3.5m ; } # List of --with-<library> and --without-<library> # options. If left empty, all libraries will be built. # Options specified on the command line completely # override this variable. libraries = ; # These settings are equivalent to corresponding command-line # options. option.set prefix : /usr/local ; option.set exec-prefix : /usr/local ; option.set libdir : /usr/local/lib ; option.set includedir : /usr/local/include ; # Stop on first error option.set keep-going : false ;
Finally we will compile Boost in "/Users/youruser/kratos/external_libraries/boost_1_61_0/stage". Being inside "/Users/youruser/kratos/external_libraries/boost_1_61_0" in the Terminal, run the following command
./b2 stage --with-python --with-serialization cxxflags="-std=c++11" link=shared,static
In the end you should see a message like:
...updated 171 targets...
Install CMake
CMake is the tool used to compile Kratos. Download the CMake latest release for your Mac version in https://cmake.org/download/ . In our case it was CMake 3.6.2. Open the downloaded file, e.g. "cmake-3.6.2-Darwin-x86_64.dmg", and agree the License Agreement terms. Then drag and drop the CMake application into your Applications folder. After that you can eject "cmake-3.6.2-Darwin-x86_64" and erase it to save space.
Finally go to your Applications folder and right-click CMake.app to open it. Then you can quit CMake (cmd+q).
Configure Kratos
When compiling Kratos for the first time, one needs to properly customise the configuration file. Open a Terminal, navigate to your "kratos/cmake_build" folder and make a copy of the template file:
cd cd kratos/cmake_build/ cp example_configure.sh.do_not_touch release_configure.sh
Open "release_configure.sh" file with any text editor and modify it like follows. First, indicate the full path of CMake:
cmake .. \ /Applications/CMake.app/Contents/bin/cmake .. \
Next, specify the path to clang-omp:
-DCMAKE_C_COMPILER=/usr/bin/gcc \ -DCMAKE_C_COMPILER=/usr/local/bin/clang-omp \
-DCMAKE_CXX_COMPILER=/usr/bin/g++ \ -DCMAKE_CXX_COMPILER=/usr/local/bin/clang-omp++ \
Now, provide the path of Boost and Python 3 directories, and the location of Lapack and Blas libraries. If you followed the steps in this tutorial, just add the following lines changing "youruser" by the name of your home folder:
-DBOOST_ROOT="/Users/youruser/kratos/external_libraries/boost_1_59_0" \ -DBOOST_LIBRARYDIR="/Users/youruser/kratos/external_libraries/boost_1_59_0/stage/lib" \ -DPYTHON_LIBRARY="/Library/Frameworks/Python.framework/Versions/3.5/Python" \ -DPYTHON_INCLUDE_DIR="/Library/Frameworks/Python.framework/Versions/3.5/include/python3.5m" \ -DLAPACK_LIBRARIES="/usr/lib/liblapack.dylib" \ -DBLAS_LIBRARIES="/usr/lib/libblas.dylib" \
Furthermore, in order to compile EXTERNAL_SOLVERS_APPLICATION without installing the iterative solver and avoiding a Clang compilation error, you also need to exclude "ITSOL" :
-DEXCLUDE_ITSOL=ON \
Note that you can also specify which applications are going to be compiled by setting them to ON or OFF.
In the end, the configuration file could look like this:
/Applications/CMake.app/Contents/bin/cmake .. \ -DCMAKE_C_COMPILER=/usr/local/bin/clang-omp \ -DCMAKE_INSTALL_RPATH="/Users/youruser/kratos/libs" \ -DCMAKE_INSTALL_RPATH_USE_LINK_PATH=TRUE \ -DCMAKE_CXX_COMPILER=/usr/local/bin/clang-omp++ \ -DCMAKE_CXX_FLAGS="${CMAKE_CXX_FLAGS} -msse3 -std=c++11" \ -DCMAKE_C_FLAGS="${CMAKE_C_FLAGS} -msse3" \ -DCMAKE_BUILD_TYPE=Release \ -DBOOST_ROOT="/Users/youruser/kratos/external_libraries/boost_1_59_0" \ -DBOOST_LIBRARYDIR="/Users/youruser/kratos/external_libraries/boost_1_59_0/stage/lib" \ -DPYTHON_LIBRARY="/Library/Frameworks/Python.framework/Versions/3.5/Python" \ -DPYTHON_INCLUDE_DIR="/Library/Frameworks/Python.framework/Versions/3.5/include/python3.5m" \ -DLAPACK_LIBRARIES="/usr/lib/liblapack.dylib" \ -DBLAS_LIBRARIES="/usr/lib/libblas.dylib" \ -DINCOMPRESSIBLE_FLUID_APPLICATION=OFF \ -DMESHING_APPLICATION=OFF \ -DEXTERNAL_SOLVERS_APPLICATION=ON \ -DPFEM_APPLICATION=OFF \ -DSTRUCTURAL_APPLICATION=OFF \ -DCONVECTION_DIFFUSION_APPLICATION=ON \ -DINSTALL_EMBEDDED_PYTHON=ON \ -DEXCLUDE_ITSOL=ON \
|
Compile Kratos
In order to compile Kratos, you just need to run the following command from the same "kratos/cmake_build/" folder:
sh release_configure.sh
Please, bear in mind that depending on which applications are being compiled, the first compilation of Kratos may take a lot of time.
Compilation issues
We are aware of three warnings appearing after each linking of libraries:
ld: warning: path '/Library/Frameworks/Python.framework/Versions/3.5/Python' following -L not a directory ld: warning: path '/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib' following -L not a directory ld: warning: path '/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib' following -L not a directory
Set up your shell environment
After compiling Kratos, you need to tell OS X where to find the libraries by adding some paths to your shell environment. First execute the following commands to create or open (if it already exists) the ".bash_profile":
cd nano .bash_profile
Now add the following two lines containing the path to your kratos folder and the path to the compiled libraries. If you followed the steps in this tutorial they are:
export PYTHONPATH="/Users/youruser/kratos:$PYTHONPATH" export DYLD_LIBRARY_PATH="/Users/youruser/kratos/libs:/Users/youruser/kratos/external_libraries/boost_1_59_0/stage/lib:$DYLD_LIBRARY_PATH"
Save the file by pressing ctrl+o and then hitting enter, exit nano with ctrl+x, and quit the Terminal with cmd+q. After this, every time you open a new Terminal window, the paths will be set automatically.
Test Kratos
The easiest way to test if Kratos is properly installed is to reproduce the Kratos Multiphysics message. Open a Terminal and execute Python 3 with:
python3
Once you are in Python 3, execute the following line:
from KratosMultiphysics import *
If everything is properly installed you should see this message:
| / | ' / __| _` | __| _ \ __| . \ | ( | | ( |\__ \ _|\_\_| \__,_|\__|\___/ ____/ Multi-Physics 3.3.12732
To quit Python 3 just run
exit()
And that's all. You can now run your own python scripts to test that everything works.