Installation and environment variables. Simple Installation 1 The latest sources can always be obtained from the CDAT website:

Slides:



Advertisements
Similar presentations
05/11/2001 CPT week Natalia Ratnikova, FNAL 1 Software Distribution in CMS Distribution unitFormContent Version of SCRAM managed project.
Advertisements

Binding python to other languages (Fortran and C).
en-us/sharepoint/fp
Chapter Apache Installation on Linux. Acknowledgement The contribution made by Darrin Morison is acknowledged.
Introduction to Java IEEM241 Routing and Fleet Management Feb 3, 2005.
Installing Bioperl Perl and BioPerl are both open source projects
Software installation Chapter 7. Software installation Numerous software options Usually free Open source Several sources Installation CD Websites sourceforge.net.
How to install the Zelle graphics package
Setting up the Development Environment Copyright © SUPINFO. All rights reserved Preparation.
NDT Tools Tutorial: How-To setup your own NDT server Rich Carlson Summer 04 Joint Tech July 19, 2004.
Julie McEnery1 Installing the ScienceTools The release manager automatically compiles each release of the Science Tools, it creates a set of wrapper scripts.
Servlets Environment Setup. Agenda:  Setting up Java Development Kit  Setting up Web Server: Tomcat  Setting up CLASSPATH.
Donald Stark National Center for Atmospheric Research (NCAR) The Developmental Testbed Center (DTC) Wednesday 29 June, 2011 GSI Fundamentals (1): Setup.
Streaming Twitter. Install pycurl library Use a lab computer From the course website Download the links from pycurl and twitter streamer Extract site-packages.zip,
SUSE Linux Enterprise Server Administration (Course 3037) Chapter 4 Manage Software for SUSE Linux Enterprise Server.
Understanding the CORBA Model. What is CORBA?  The Common Object Request Broker Architecture (CORBA) allows distributed applications to interoperate.
Trilinos 101: Getting Started with Trilinos November 7, :30-9:30 a.m. Mike Heroux Jim Willenbring.
Introduction to NS2 -Network Simulator- -Prepared by Changyong Jung.
Internet of Things with Intel Edison Compiling and running Pierre Collet Intel Software.
Apache Web Server v. 2.2 Reference Manual Chapter 1 Compiling and Installing.
Vim Editor and Unix Command gcc compiler Computer Networks.
LINUX Tuesday, 5 July :00 pm. Remote Login l Use Secure Shell (ssh) l Machine name/IP address E.g. ssh hydra.sma.nus.edu.sg Or ssh
Managing Software Patches 10/15/ Introducing Solaris OE Patches A patch contains collection of files and directories Patch replaces existing files.
COP 3330 Notes 1/12. Today's topics Downloading Java and Eclipse Hello World Basic control structures Basic I/O Strings.
CSS Linux and Eclipse 1. CSS Account Log into your CSS account with the NoMachine client (NX client) 2.
Hidden Markov Toolkit (HTK) Installation Fang-Hui Chu Department of Computer Science & Information Engineering National Taiwan Normal University.
Apache, MySQL and PHP Installation and Configuration Chapter 1 Apache Installation and Configuration.
HW/SW Co-design Lecture 2: Lab Environment Setup Course material designed by Professor Yarsun Hsu, EE Dept, NTHU RA: Yi-Chiun Fang, EE Dept, NTHU.
How to create and install packages in R Presenter: Roman Jandarov
1 Getting Started with C++. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Visual Studio 2008.
Donald Stark National Center for Atmospheric Research (NCAR) The Developmental Testbed Center (DTC) 15 January, 2014 Building the HWRF Components.
Paris package: practical aspects Installation / presentation To run a simulation Analysis To add a new module to Paris Installation / presentation To run.
Installing MySQL BCIS 3680 Enterprise Programming.
Windows Installation Tutorial NASA ARSET For Python help, contact: Justin Roberts-Pierel
Enabling Grids for E-sciencE Software installation and setup Viet Tran Institute of Informatics Slovakia.
More Unix Naomi Altman. Directories Directory = folder mkdir - makes a new directory rmdir - removes an empty directory cd mydirectory - moves you into.
How to configure, build and install Trilinos November 2, :30-9:30 a.m. Jim Willenbring.
Modules. Modules Modules are the highest level program organization unit, usually correspond to source files and serve as libraries of tools. Each file.
Software Management Linux Software Package File Extensions Extension File.rpm Software package created with the Red Hat Software Package Manager, used.
Windows Installation Tutorial NASA ARSET For Python help, contact: Justin Roberts-Pierel
Introduction to ligo_viewer Vladimir Dergachev (University of Michigan) DCC: G Z DetChar camp, Hanford August 2004.
Hernán García CeCalcULA Universidad de los Andes.
 CSC 215 : Procedural Programming with C C Compilers.
Shell programming 9/12/2008 David You. Using cross compiler Cross compiler download and installation 
COM S 326X Deep C Programming for the 21st Century Prof. Rozier
CSC 215 : Procedural Programming with C
The GWB installation directory must be in your Path
Installation of the ALICE Software
MET4750 Techniques for Earth System Modeling
Hadoop Architecture Mr. Sriram
Python’s Modules Noah Black.
Install external command line softwares
Ruby Getting started & Ruby.New Presented by Mario Tayah
Software Packaging and Releasing
Java on the LEGO Mindstorms EV3
The Command Prompt Commands are the way to “do things” in Unix
Setting up your DEV C++.
Installing and running the local check projects in Eclipse
How to Upgrade Your Geant4 Release
Fractals help.
Introduction to ligo_viewer
COP 4343 Unix System Administration
Extending Languages.
Windows Installation Tutorial
Lab 4: Introduction to Scripting
Module 6 Working with Files and Directories
Python Modules.
Building a Full-Product Installer Using p2
 A function is a named sequence of statement(s) that performs a computation. It contains  line of code(s) that are executed sequentially from top.
Python Modules.
Presentation transcript:

Installation and environment variables

Simple Installation 1 The latest sources can always be obtained from the CDAT website: At the time this course is written, the distributed version of CDAT is 4.0. Unless you know what you’re doing we recommend that you obtain the CDAT-4.0- everything.tar.gz tarball.

Simple Installation 2 Unpack the source: $ gunzip CDAT-4.0-everything.tar.gz $ tar xvf CDAT-4.0-everything.tar Enter directory: $ cd cdat-4.0 Look at the README.txt file to see if your operating system requires you to set some environment variable before going any further.

Express and Custom Installation There are basically 2 ways to install CDAT, the “express install” or the “custom install”. The express install will take care of everything for you – big installation! The custom install lets the user keep existing version of components and link CDAT with them.

Express Install Installs everything that CDAT needs on your system (including Python, Tcl/Tk, Numeric, Netcdf, OpenDAP, etc.,). Running express installation: –Make a directory to put your installation in: $ mkdir /usr/local/cdat-4.0 –Then run the express install command: $./express_install /usr/local/cdat-4.0

PATH and PYTHONPATH If you have other python (or CDAT) installations you may need to set your environment variables PATH and PYTHONPATH: $ PATH=$PATH: /bin # for executables $ PYTHONPATH=$PYTHONPATH: /lib # for modules, packages and python extension modules You can then run using ‘ cdat ’ or ‘ vcdat ’ or ‘ python ’.

Note on Fortran Compilers Optionally some contributed Packages will require a FORTRAN compiler, while the GNU-FORTRAN 77 will do others can be used, users should check the Pyfort web-site to make sure their Fortran Compiler is supported.