Skip to content

Commit

Permalink
Update installation.rst (#888)
Browse files Browse the repository at this point in the history
* Update installation.rst

* Update installation.rst

* Update installation.rst
  • Loading branch information
nileshpatra authored and wkerzendorf committed Feb 27, 2019
1 parent e61beb6 commit 04e60e0
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,24 @@ from tardis/_compiler.c:1: /Users/yssavo/miniconda2/envs/tardis-show2/lib/gcc/x8

**Problem:** Symbol not found: _GOMP_parallel when compiling with `--with-openmp`

**Solution:** Install gcc8 from macports and then install with these flags: `link_args = ['-fopenmp','-Wl,-rpath,/opt/local/lib/gcc8/']`
**Solution:** Install gcc8 from macports and then install with these flags: `link_args = ['-fopenmp','-Wl,-rpath,/opt/local/lib/gcc8/']`

**Problem:** While building tardis(via python 2.7) via ``python setup.py`` build you
may encounter the following error::

TypeError: super() argument 1 must be type, not None
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-req-build-wPB39p/


**Solution:** The cause for this problem is sphinx , or sphinx version . It can be easily solved by installing sphinx 1.5.6.
The command for the same is :

pip install sphinx==1.5.6

or

conda install sphinx==1.5.6

Then, ``python setup.py build install`` should run without problems.

0 comments on commit 04e60e0

Please sign in to comment.