Installing CASA

From CASA Guides
Revision as of 00:25, 6 June 2010 by Lchomiuk (talk | contribs) (Created page with 'Category: InstallationCategory: CASA Basics {{Getting Started Intro}} == Installing CASA == CASA is available via the NRAO portal [http://my.nrao.edu http://my.nrao.edu].…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

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

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.