Unverified Commit 17bc15f6 authored by Emmanouil Theofanis Chourdakis's avatar Emmanouil Theofanis Chourdakis Committed by GitHub
Browse files

Add info on README.md for #666 (#667)

* Add info on README.md for #666

Added a simple command what to do when coming
across undefined reference errors when trying to build
from specific linux+anaconda configurations.
parent 6c3cc16d
...@@ -93,6 +93,21 @@ python setup.py install ...@@ -93,6 +93,21 @@ python setup.py install
MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py install MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py install
``` ```
If while building from within an anaconda environment you come across errors similar to the following:
```
../bin/ld: console.c:(.text+0xc1): undefined reference to `tgetnum'
```
Install `ncurses` from `conda-forge` before running `python setup.py install`:
```
# Install ncurses from conda-forge
conda install -c conda-forge ncurses
```
Quick Usage Quick Usage
----------- -----------
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment