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
Problem: Packages that depend on numpy and scipy may fail to install.
How do I install gcc-4.8?
Solution:
If you omit system python packages, you won't get system numpy or scipy. This may be desirable, from the loom developers point of view. So we'll install the exact version of gcc and gfortran we'd need to compile scipy and numpy from scratch.
Problem: Packages that depend on
numpy
andscipy
may fail to install.How do I install
gcc-4.8
?Solution:
If you omit system python packages, you won't get system
numpy
orscipy
. This may be desirable, from theloom
developers point of view. So we'll install the exact version ofgcc
andgfortran
we'd need to compilescipy
andnumpy
from scratch.Problem:
#error This file was generated by an older version of protoc which is...
Solution:
Problem:
ImportError: No module named dateutil.parser
orcontextlib2
Solution:
Problem:
distributions include dir not found
or/usr/bin/ld: cannot find -ldistributions_shared
while trying to install or testdistributions
.Solution:
Installing just the Python package
Install
distributions
usingsetup.py
first. Run withsudo
if you need to install to system:Inside the
distributions
directory:Now, you can run
make install
and it will correctly install the package and passcmake_test
.Installing with the library to the system
Mysteriously, the way the build system for this project is configured, installing to system is challenging.
First, build the libraries and includes. Then add outputs to the system directories where they are expected to be found.
DISTRIBUTIONS_USE_PROTOBUF=1 make release_cc sudo cp lib/* /usr/lib sudo cp -r include/distributions /usr/local/include make -j8 sudo make install
Note, on my system, a test fails with
make
but the python package is successfully built.The text was updated successfully, but these errors were encountered: