You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Current »

After doing the whole thing, I'm now getting free() errors when loading anaconda shared libraries in Python.  I'll try installing an edison anaconda.

 

$> mkdir -p /project/projectdirs/m1727/lsst_edison/lsstStack/

$> module swap PrgEnv-intel PrgEnv-gnu

$> module load git

$> wget --no-check-certificate https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt

$> mv ca-bundle.crt /project/projectdirs/m1727/lsst_edison

$> setenv CURL_CA_BUNDLE /project/projectdirs/m1727/lsst_edison/ca-bundle.crt

$> setenv PATH /project/projectdirs/m1727/lsst/anaconda/bin/:$PATH #sharing anaconda with carver build

$> setenv PYTHON `which python`

$> cd /project/projectdirs/m1727/lsst_edison/lsstStack/

$> curl -O sw.lsstcorp.org/eupspkg/newinstall.sh

$> sh newinstall.sh # failed once on scons because the tar.gz wasn't complete... weird.

$> setenv CC 'gcc' 

$> eups distrib install afw # Installing the hardest thing first.  If this works, everything else should install (fingers crossed)

Success!!!!

$> eups distrib install lsst_sims -t sims

This failed at installing healpy complaining about the version of setuptools.  It turns out that the stock python path was making it into PYTHONPATH.  This may be solved by unloading the python module before doing anything else, but it didn't help here.

Before

$> echo $PYTHONPATH

/project/projectdirs/m1727/lsst_edison/lsstStack/Linux64/sconsUtils/8.0.0.0/python:/scratch1/altd/lib64/python2.6/site-packages:/project/projectdirs/m1727/lsst_edison/lsstStack/eups/python

After
$> setenv PYTHONPATH /project/projectdirs/m1727/lsst_edison/lsstStack/Linux64/sconsUtils/8.0.0.0/python:/project/projectdirs/m1727/lsst_edison/lsstStack/eups/python

  • No labels