Skip to content

Commit 17bc15f

Browse files
authored
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.
1 parent 6c3cc16 commit 17bc15f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,21 @@ python setup.py install
9393
MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py install
9494
```
9595

96+
If while building from within an anaconda environment you come across errors similar to the following:
97+
98+
99+
```
100+
../bin/ld: console.c:(.text+0xc1): undefined reference to `tgetnum'
101+
```
102+
103+
Install `ncurses` from `conda-forge` before running `python setup.py install`:
104+
105+
```
106+
# Install ncurses from conda-forge
107+
conda install -c conda-forge ncurses
108+
```
109+
110+
96111
Quick Usage
97112
-----------
98113

0 commit comments

Comments
 (0)