I have a fresh conda install of v13_0 on RHEL6-64. I started by installing a new copy of Miniconda 4.3.1. I chose to install DM in the root environment of my miniconda install, rather than creating a separate conda env. That bit seemed to go just fine.
Now I want to run the demo as described here: https://pipelines.lsst.io/install/demo.html. I set up my environment:
> export PATH=/nfs/farm/g/lsst/u1/software/rh6-64/DMstack/v13_0/bin:${PATH}
> source scl_source enable devtoolset-3
> source eups-setups.sh
> setup lsst_apps
> PS1="[v13_0] “
Note that I’ve tried both lsst_apps and lsst_distrib as well as devtoolset-3 and devtoolset-4 but the result is the same. I’ve downloaded the demo and do:
[v13_0] cd lsst_dm_stack_demo-13.0
[v13_0] setup obs_sdss
[v13_0] ./bin/demo.sh --small
Setting up: astrometry_net_data Flavor: Linux64 Version: LOCAL:/nfs/farm/g/lsst/u1/software/rh6-64/DMstack/lsst_dm_stack_demo-13.0/astrometry_net_data
Could not import lsstcppimport; please ensure the base package has been built (not just setup).
Traceback (most recent call last):
File "/nfs/farm/g/lsst/u1/software/rh6-64/DMstack/v13_0/opt/lsst/pipe_tasks/bin/processCcd.py", line 23, in <module>
from lsst.pipe.tasks.processCcd import ProcessCcdTask
File "/nfs/farm/g/lsst/u1/software/rh6-64/DMstack/v13_0/opt/lsst/pipe_tasks/python/lsst/pipe/tasks/processCcd.py", line 22, in <module>
from lsst.ip.isr import IsrTask
File "/nfs/farm/g/lsst/u1/software/rh6-64/DMstack/v13_0/opt/lsst/ip_isr/python/lsst/ip/isr/__init__.py", line 24, in <module>
from .isrLib import *
File "/nfs/farm/g/lsst/u1/software/rh6-64/DMstack/v13_0/opt/lsst/ip_isr/python/lsst/ip/isr/isrLib.py", line 27, in <module>
_isrLib = swig_import_helper()
File "/nfs/farm/g/lsst/u1/software/rh6-64/DMstack/v13_0/opt/lsst/ip_isr/python/lsst/ip/isr/isrLib.py", line 26, in swig_import_helper
return importlib.import_module('_isrLib')
File "/nfs/farm/g/lsst/u1/software/rh6-64/DMstack/v13_0/lib/python2.7/importlib/__init__.py", line 37, in import_module
__import__(name)
ImportError: No module named _isrLib
Any suggestions? Thanks!