The tutorial that I am using is the following: https://heasarc.gsfc.nasa.gov/xanadu/xspec/python/html/buildinstall.html
I have finished the installation till ..Once HEASOFT is finished building and installing, you should find PyXspec’s code files and lib_pyXspec.so library in the directory $HEADAS/lib/python/xspec.
However, when I run $HEADAS/headas-init.csh
, it asks for superuser permission and when I use sudo
, it gives me an error saying that command was not found. Then I tried to set the PYTHONPATH environment manually using:
>>> sys.path
['', '/usr/local/lib/python2.7/dist-packages/pyds9-1.9.dev0-py2.7-linux-x86_64.egg', '/usr/lib/python2.7', '/usr/lib/python2.7/plat-x86_64-linux-gnu', '/usr/lib/python2.7/lib-tk', '/usr/lib/python2.7/lib-old', '/usr/lib/python2.7/lib-dynload', '/usr/local/lib/python2.7/dist-packages', '/usr/lib/python2.7/dist-packages']
>>>
>>> sys.path.append("$HEADAS/lib/python")
>>> import xspec
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "xspec/__init__.py", line 66, in <module>
from .chain import ChainManager, AllChains, Chain
File "xspec/chain.py", line 4, in <module>
from . import _pyXspec
ImportError: libXSUser.so: cannot open shared object file: No such file or directory
But that did not work either. How do I install this?
Thank you