You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,12 @@ You will need:
48
48
* Python (the anaconda distribution is used by the authors)
49
49
* a compiler (on windows, Visual Studio 2015+ (express version is fine), g++ on linux/OSX)
50
50
51
+
If on linux you use Anaconda and end up with an error like
52
+
```
53
+
ImportError: /home/theuser/anaconda3/bin/../lib/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by /home/theuser/anaconda3/lib/python3.5/site-packages/ChebTools.cpython-35m-x86_64-linux-gnu.so)
54
+
```
55
+
it can be sometimes fixed by installing ``libgcc`` with conda: ``conda install libgcc``. [This is due to an issue in Anaconda](https://github.com/ContinuumIO/anaconda-issues/issues/483)
56
+
51
57
## To install in one line from github (easiest)
52
58
53
59
This will download the sources into a temporary directory and build and install the python extension so long as you have the necessary prerequisites:
0 commit comments