Installing Cactus (progressiveCactus)
When installing Cactus (using the progressiveCactus repository) I encountered the following issues during compiling:
easy_install not found Solution: Needed to remove my
~/.pydistutils.cfg
Dependencies/includes not being found Solution: add
CXXFLAGS=-I"<install_location>/include/"
andCFLAGS=-I"<install_location>/include/"
to<install_location>/share/config.site
kyototycoon not compiling as kyotocabinet functions not found (as in issue 27) Solution: (as in my comment to the issue)entering the kyototycoon directory and running configure with different flags, then make:
./configure --prefix=~/software --with-kc=~/software make
where
~/software
is the prefix I am installing to (with subdirs bin, lib, include, man etc)