diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-05-06 00:18:00 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-05-06 00:18:00 -0400 |
commit | 9735e0a5483766fb4bcbff10bb8a9a8cac065d71 (patch) | |
tree | b1db9b73e806d1a098c8c85f3c133c87f8a35425 /source/faq.rst | |
parent | 26aec4f28b7af319cf6af292d3f240e391dc85bc (diff) | |
download | astroconda-9735e0a5483766fb4bcbff10bb8a9a8cac065d71.tar.gz |
Update FAQ: Explain why IRAF is not 64-bit
Diffstat (limited to 'source/faq.rst')
-rw-r--r-- | source/faq.rst | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/source/faq.rst b/source/faq.rst index 46a1d34..827f0d9 100644 --- a/source/faq.rst +++ b/source/faq.rst @@ -85,6 +85,33 @@ IRAF into its own environment under Python 2.7: ``conda create -n iraf27 python=2.7 iraf pyraf stsci && source activate iraf27`` +Why is IRAF 32-bit instead of 64-bit? +===================================== + +Many of the IRAF tasks that we include with AstroConda are so old that they cannot be compiled as 64-bit executables +without significant changes to the source code. Because of this restriction, we always build IRAF as a 32-bit program, even +for our 64-bit distributions. + +In Linux, how do I install IRAF's 32-bit dependencies? +------------------------------------------------------ + +Debian >=7, Ubuntu >=14.04 +^^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. code-block:: sh + + # If on Debian execute this first (not required on Ubuntu): + sudo dpkg --add-architecture i386 + + sudo apt-get update + sudo apt-get install libc6:i386 libz1:i386 libncurses5:i386 libbz2-1.0:i386 libuuid1:i386 libxcb1:i386 + +RHEL/CentOS >=6, Fedora >=14 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. code-block:: sh + + sudo yum install glibc.i686 zlib.i686 ncurses.i686 bzip2-libs.i686 uuid.i686 libxcb.i686 Will AstroConda interfere with other scientific distributions (e.g. SciSoft)? ============================================================================= @@ -93,5 +120,3 @@ Will AstroConda interfere with other scientific distributions (e.g. SciSoft)? It is your responsibility to maintain a functional shell environment so [insert scientific distribution here] does not conflict with your Anaconda installation. - - |