Installation

Requirements

cygrid has the following strict requirements:

Installing cygrid

Using Anaconda

The easiest way to install cygrid is certainly to make use of the great Anaconda Python distribution:

conda install cygrid -c conda-forge

Using pip

To install cygrid with pip, simply run

pip install cygrid

Note

You may need a C++ compiler (e.g., g++) with OpenMP support to be installed for the installation to succeed, if no binary wheel is available for your OS and Python version on the Python Package Index

Note

Use the --no-deps flag if you already have dependency packages installed, since otherwise pip will sometimes try to “help” you by upgrading your installation, which may not always be desired.

Note

If you get a PermissionError this means that you do not have the required administrative access to install new packages to your Python installation. In this case you may consider using the --user option to install the package into your home directory. You can read more about how to do this in the pip documentation.

We recommend to use a Python distribution, such as Anaconda, especially, if you are on Installation on Windows.

Do not install cygrid or other third-party packages using sudo unless you are fully aware of the risks.

Installation from source

There are two options, if you want to build cygrid from sources. Either, you install the tar-ball (*.tar.gz file) from PyPI and extract it to the directory of your choice, or, if you always want to stay up-to-date, clone the git repository:

git clone https://github.com/bwinkel/cygrid

Then go into the cygrid source directory and run:

python setup.py install

Again, consider the --user option or even better use a python distribution such as Anaconda to avoid messing up the system-wide Python installation.

Installation on Windows

Note that for Windows machines we provide a binary wheel (Python 3.5+ only) via PyPI and installation is as easy as with Linux:

pip install cygrid

Note

If you are desperate, you can install cygrid from source even on Windows. You’ll need to install a suitable C-compiler; see here. The cygrid package needs Python 3.5 or later, which means VC++ Version 14 is mandatory. The easiest way to obtain it, is by installing the Visual C++ 2015 Build Tools which is “only” 4 GBytes large…

Installation on MacOS

Installation on MacOS can be a bit tricky, because the standard C compiler does not support OpenMP. We provide wheels on PyPI, such that you can

pip install cygrid

however, you need to have the GCC C++ compiler (see below), otherwise you’ll likely get some error message.

Also, if you want to install from source, you must have a C++ compiler. There are basically two options, using the gcc suite (recommended) or clang/LLVM.

gcc

brew install gcc
brew link --overwrite gcc

You may have to set build-related environment variables to point towards the gcc compilers instead of the standard clang:

export CC="gcc-8"
export CXX="g++-8"
export CPP="g++-8"
export LD="gcc-8"
export LDFLAGS="-Wl,-rpath,/usr/local/opt/gcc/lib/gcc/8/"

Note

Replace the version (“8”) in the above lines with the actually installed gcc version!

Then follow the instructions in Installation from source.

clang/LLVM

brew update
brew install llvm

export CC='/usr/local/opt/llvm/bin/clang'
export CXX='/usr/local/opt/llvm/bin/clang++'
export CXX11='/usr/local/opt/llvm/bin/clang++'
export LDFLAGS='-L/usr/local/opt/llvm/lib -Wl,-rpath,/usr/local/opt/llvm/lib -lgomp'
export CPPFLAGS='-I/usr/local/opt/llvm/include -stdlib=libc++'

Then follow the instructions in Installation from source.

Note

The MacOS wheel, which we provide on PyPI (for pip installation) was built using clang/LLVM. So it may happen that you run into binary incompatibilities if you use a different compiler suite on your computer. In such cases it may be necessary to build cygrid from source using your own compiler. Sometimes even different compiler versions (e.g. gcc 6.3 instead of gcc 6.4) can lead to problems. Please write a ticket, if you run into trouble.

Note

Again, if you’re on Anaconda, things get (often) much simpler:

conda install -c conda-forge gcc

This will install the gcc compiler suite into your Anaconda installation and the instructions in Installation from source should work out-of-the-box. If you prefer clang/LLVM, the following should install the necessary conda packages:

conda install -c conda-forge clang_osx-64 clangxx_osx-64 llvm-openmp openmp

The cygrid package on conda-forge was created using the latter approach.

Testing an installed cygrid

The easiest way to test if your installed version of cygrid is running correctly, is to use the test() function:

import cygrid
cygrid.test()

The tests should run and print out any failures, which you can report at the cygrid issue tracker.

Note

This way of running the tests may not work if you do it in the cygrid source distribution directory.

If you prefer testing on the command line and usually work with the source code, you can also do

python setup.py test