The minimum prerequisites to build OGS are:
Please note that the following setup on Windows is the native Windows development setup. This native setup is quite involved and heavy on system resources. We can recommend an alternative setup in which the Windows Subsystem for Linux is used: Setup and development of OGS follows the Linux way but you can use your Windows IDE (especially Visual Studio Code) for development and debugging. If this sounds interesting please follow the steps here!
As we use lots of features of the C++17-standard we support Visual Studio 2019 and up. Therefore you will need at least Windows 7 (64-bit recommended). It is perfectly fine to use the free Community Edition of Visual Studio.
Desktop Development with C++
On Debian-based (e.g. Ubuntu) you need to install the build-essential
-package (which contains the gcc
-compiler and the make
-tool):
You need to have at least gcc 9.0:
We recommend using Ubuntu 20.04 as its standard gcc
package is already at version 9. If you are on an older Ubuntu version you can install a newer compiler from the ubuntu-toolchain-r/test
-repository:
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-9 g++-9
To make the newly installed compiler the default one:
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 60 \
--slave /usr/bin/g++ g++ /usr/bin/g++-9
If you do not do this you have to specify the compiler during the first CMake run:
Please install Xcode from the App Store. Then please run the following command in the terminal to install the command line tools:
Open Xcode one time to install some other Xcode stuff.
Now also install the Homebrew package manager:
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
$ brew doctor
The Homebrew package manager is needed for installing other libraries and packages. It is just like a linux package manager.
Git is a powerful and distributed version control system. OGS source code is hosted on GitHub. See the developer guide page on Code Reviews for more info on how OGS uses GitHub for collaborative development.
Download and install git from the git homepage. Use the default installer options but also enable Enable symbolic links
under the Configuring extra options page.
This install a new command line called Git Bash which should be used for all git operations.
Let Git know who you are:
$ git config --global user.name "Your Name Here"
$ git config --global user.email "your_email@example.com"
In some corporate environments you may have to use a proxy server. In this case tell git about it:
Please check if Git is already installed:
Otherwise please install Git with your favorite package manager:
Let Git know who you are:
$ git config --global user.name "Your Name Here"
$ git config --global user.email "your_email@example.com"
Optionally enable password storing when interacting with a remote server:
In some corporate environments you may have to use a proxy server. In this case tell git about it:
Install Git with Homebrew:
Let Git know who you are:
$ git config --global user.name "Your Name Here"
$ git config --global user.email "your_email@example.com"
The graphical GitHub client is also maybe worth a look.
In some corporate environments you may have to use a proxy server. In this case tell git about it:
Git LFS (large file storage) is a git extension dealing with large binary files such as images and is used for the documentation. You don’t need to worry about anything but you need to install the extension as it is not a part of standard git.
git lfs install
in the command lineInstall via PackageCloud:
Install with Homebrew:
If you do not have rights to install a system package (e.g. on cluster systems) you can download a precompiled git-lfs
executable. Simply put it into your PATH
and everything should work (remember to run git lfs install
once!). See also: https://github.com/git-lfs/git-lfs/wiki/Installation#other
pip
enabled (you may uncheck Documentation, tcl/tk, Python test suite)Install Python 3 and pip:
Install Python 3 with Homebrew:
Install CMake via Kitware’s APT Repository by following their instructions.
For other linux distributions you want to use your distributions package manager, pip or snap.
Install CMake with Homebrew:
The Conan package manager helps to install all required libraries in a convenient way on every platform. If you prefer you can also install libraries manually instead.
Install Conan (>= 1.21.0) with Python’s pip:
This installed conan
to .local/bin
(or C:\Users\[username]\AppData\Roaming\Python\Python37\Scripts
on Windows) in your home directory. Make sure to have this directory in your PATH
!
Check on a newly opened command line if Conan was installed successfully:
This article was written by Lars Bilke. If you are missing something or you find an error please let us know.
Generated with Hugo 0.64.1. Last revision: June 16, 2020
Commit: Added docs on installing a newer compiler on Ubuntu. d63cc513f
| Edit this page on