Installing CASA: Difference between revisions

From CASA Guides
Jump to navigationJump to search
No edit summary
No edit summary
Line 53: Line 53:
If you want to install CASA ona slackware system, you may try the following:
If you want to install CASA ona slackware system, you may try the following:


1 replacing _hashlib.so in the casapy package with the same library provided with python in slackware 13 (otherwise, a missing dynamic library is needed).
* replacing _hashlib.so in the casapy package with the same library provided with python in slackware 13 (otherwise, a missing dynamic library is needed).
1 editing the file .../casapy.../lib/python2.6/hashlib.py
* editing the file .../casapy.../lib/python2.6/hashlib.py


line 63<br>
line 63<br>
Line 61: Line 61:
(old) return _md5.new ----> (new) return openssl _md5.new
(old) return _md5.new ----> (new) return openssl _md5.new


1 editing the file .../casapy.../lib/python2.6/site-packages/IPython/genutils.py
* editing the file .../casapy.../lib/python2.6/site-packages/IPython/genutils.py


line 50<br>
line 50<br>
(old) from IPython import DPyGetOpt, platutils ----> (new) import DPyGetOpt, platutils
(old) from IPython import DPyGetOpt, platutils ----> (new) import DPyGetOpt, platutils

Revision as of 12:43, 3 June 2011

Getting Started

Installing CASA

CASA is available via the NRAO portal http://my.nrao.edu. You may need to register if you have not been using NRAO services in the past. CASA is available for MacOS X and Linux platforms and installation instructions are provided at https://safe.nrao.edu/wiki/bin/view/Software/ObtainingCASA

Tips on Verifying Mac OS version

Before installing CASA, Mac users need to identify MacOS X software version. To determine if your hardware is 32 or 64 bit, see the instructions at http://support.apple.com/kb/ht3696. Next, to determine if you are running Mac OS X 10.5 or 10.6, go to "AppleMenu -> AboutThisMac -> MoreInfo -> Software" and see System Version (not Kernel Version!). Finally, if "64-bit Kernel and Extensions = Yes", then you are running a 64-bit kernel (x86_64), otherwise it is a 32-bit kernel (i386).

Installing CASA on Ubuntu

The following method worked for Ubuntu 9.04 (Jaunty).

sudo mkdir /usr/local/bin/CASA
sudo mv casapy-30.0.9860-001-64b.tar.gz /usr/local/bin/CASA # this is for 64-bit installation; substitute the appropriate tarball here
cd /usr/local/bin/CASA
sudo tar zxvf casapy-30.0.9860-001-64b.tar.gz
  • Add the following environment variable to your .bashrc (or the equivalent command for your preferred shell startup script).
export PATH=$PATH:/usr/local/bin/CASA/casapy-30.0.9860-001-64b
  • Test it out!
source ~/.bashrc # or open a new terminal
casapy

Installing CASA on Debian

The Ubuntu installation instructions work well for Debian as well. However, if "xvfb" is not installed on your machine, CASA may start with errors like this:

OK, no bytes read while starting xvfb, timeout?...15396...

15390-casaviewer-svr: cannot connect to X server localhost:16.0

If so, try this:

sudo apt-get install xvfb

Then restart CASA and the problem should be solved.


Hints for Slackware

If you want to install CASA ona slackware system, you may try the following:

  • replacing _hashlib.so in the casapy package with the same library provided with python in slackware 13 (otherwise, a missing dynamic library is needed).
  • editing the file .../casapy.../lib/python2.6/hashlib.py

line 63
(old) import _md5 ----> (new) from _hashlib import openssl_md5
line 64
(old) return _md5.new ----> (new) return openssl _md5.new

  • editing the file .../casapy.../lib/python2.6/site-packages/IPython/genutils.py

line 50
(old) from IPython import DPyGetOpt, platutils ----> (new) import DPyGetOpt, platutils