I have Jupyterhub running in a jail with Python 3.5.
installs with no errors
In notebook cell:
Gives error:
Ports installed include lapack, openblas, gcc, gcc46, cblas, pkgconfig
Throws all kinds of errors related back to gcc 4.6 fortran
Any ideas how to fix this? Haven't found anything that works so far.
Code:
$ pip3 install numpy
Code:
$ python35
>> import numpy
>> [aka no error]
In notebook cell:
Code:
import numpy as np
Gives error:
Code:
ImportError: /lib/libgcc_s.so.1: version GCC_4.6.0 required by /usr/local/lib/gcc48/libgfortran.so.3 not found
Code:
$ pip3 install scipy
Any ideas how to fix this? Haven't found anything that works so far.