Knitro and AMPL Installation (1)

Size: px
Start display at page:

Download "Knitro and AMPL Installation (1)"

Transcription

1 Knitro and AMPL Installation (1) Install Knitro and AMPL: 1. Go to to download software. 2. To login, enter the following username and password: Username : ICE Password : QX5NNm*ka6 3. Download the following from the links on the right hand side of the page: Knitro_8.0 (for Full Knitro and academic licenses) AMPL 8.0 Choose the link which is appropriate for your computer and OS. The other links are subsets of Knitro 8.0 distribution so do not use them unless you want reduced functionality.

2 Knitro and AMPL Installation (2) 3. To unpack these files: Linux & OS/X Extract these files by double clicking on them in the Finder or Browser window. If that fails, open a Terminal window and use tar: $ cd /my/install/dir. $ tar xzf ampl-z-macosx64.tar.gz $ tar xzf knitro z-macosx-64.tar.gz Windows Unzip the files where you want them by double clicking on them in the Windows Explorer. Install the files somewhere sensible i.e., add a level of indirection by creating a directory to contain Tools and a subdirectory for everything from Ziena., e.g., I install Knitro in OS/X: /Users/bss/Tools/Ziena/knitro Linux: /home/bss/tools/ziena/knitro Windows: c:\tools\ziena\knitro or equivalent. Warning: on Windows, you should avoid avoid file and directory names with spaces in them.

3 Knitro and AMPL Installation (3) 4. Next, get your machine ID, which will uniquely identify your machine unless you are running certain VPN software: Click on get your machine ID link on the license key request page Extract the files as discussed on the previous slide Run get_machine_id by double-clicking on it or running it in a Terminal or xterm window (OS/X or Linux): $./get_machine_id ---- Your Ziena machine ID is 8b-0f a ---- Use this machine ID to obtain a Ziena license. NOTE: this is a Stand Alone license. Ignore the stuff in the documentation about floating licenses. 5. Click GENERATE KEY and store the license in the file ziena_license.txt in your Knitro directory.

4 Warning! Please do not distribute these software licenses to anyone: We depend on vendors goodwill to provide you with free licenses. If you give others access to this software, we will lose the ability to provide software to future generations at ICE and you will destroy relationships that we have spent years cultivating.

5 Environment Variables Now you need to set environment variables to configure your operating system to use Knitro and AMPL. Environment variables provide state information to the operating system: Specify configuration information: Location of key resources such as libraries or license files Tell the OS where to find executables (i.e. programs to run) using a special variable names PATH Environment variables are set differently on different operations systems but they work by associating a variable name with value: Linux & OS/X: set environment variables in a special file named.bashrc (or sometimes.profile) Windows: set via control panel The gory details will be explained below

6 Overview of Software Environment Setup environment variables for your installation: ampl and knitroampl must be in your PATH Set ZIENA_LICENSE environment variable to the full path to license.txt Specify the full path to the Knitro lib directory so that MATLAB can use Knitro: Linux: Set LD_LIBRARY_PATH accordingly Mac OS/X: Set DYLD_LIBRARY_PATH Windows: Set PATH See OS-specific examples below If all else fails, RTFM (Read The F****** Manual) which is available in the ${KNITRO_DIR}/knitro z/doc/ Knitro80_UserManual.pdf, where ${KNITRO_DIR) is the directory where you installed Knitro 8.0. Read the section on Stand-Alone Licenses.

7 Windows Vista and Windows 7 Setup On Windows, you need to add the locations for ampl, knitroampl, and the Knitro lib directory via the PATH environment variable: 1. At Windows Desktop, right-click My Computer 2. Select Properties 3. Click the Advanced System Settings in left pane. 4. In the System Properties window select the Advanced tab 5. Then click on Environment Variables 6. Under System Variables modify Path to include the FULL path to the Knitro lib and knitroampl folders. Reminder: You need double quotes around Windows paths which have spaces in them (except on Windows 7), e.g.:...;"c:\program Files\...";... Warning: make sure you separate folders by a semicolon Warning: Make sure you set these as System and not User environment variables

8 Windows XP Setup On Windows, you need to add the locations for ampl, knitroampl, and the Knitro lib directory via the PATH environment variable: 1. At Windows Desktop, right-click My Computer 2. Select Properties 3. Click the Advanced tab. 4. Then click on Environment Variables 5. Under System Variables modify Path to include the FULL path to the Knitro lib and knitroampl folders. Reminder: You need double quotes around Windows paths which have spaces in them (except on Windows 7), e.g.:...;"c:\program Files\...";... Warning: make sure you separate folders by a semicolon Warning: Make sure you set these as System and not User environment variables

9 Linux Setup To set environment variables: Edit ~/.bashrc and ~/.profile: I have not tested that both are required, but this is the case on Mac OS/X. The \ is just to escape the new line so the text will fit on the screen. Each export statement should be an entire line. Example # License file for AMPL and KNITRO export ZIENA_DIR=/opt/ziena export ZIENA_LICENSE=${ZIENA_DIR}/knitro z/\ ziena_license.txt export PATH=${ZIENA_DIR}/ampl-z:${ZIENA_DIR}\ knitro z/knitroampl:$path # KNITRO for MATLAB export LD_LIBRARY_PATH=${ZIENA_DIR}knitro z/\ lib:$ld_library_path

10 Mac OS/X Setup To set environment variables: Edit ~/.bashrc and ~/.profile. On Mac OS/X, xterm will only recognize the settings in.bashrc but MATLAB/Knitro requires them in.profile. The \ is just to escape the new line so the text will fit on the screen. Each export statement should be an entire line. Example # License file for AMPL and KNITRO export ZIENA_DIR=/Users/bss/Tools/ziena export ZIENA_LICENSE=${ZIENA_DIR}/knitro z/\ ziena_license.txt export PATH=${ZIENA_DIR}/ampl-z:${ZIENA_DIR}\ knitro z/knitroampl:$path # KNITRO for MATLAB export DYLD_LIBRARY_PATH=${ZIENA_DIR}/knitro z/\ lib:$dyld_library_path

11 MATLAB + Knitro Setup To use Knitro from MATLAB: Specify path to knitro library, which is in the lib directory of the knitro installation, via File>Set Path in MATLAB On Windows, make sure the knitro DLL is in your path See following slides for workarounds for known problems on Windows and OS/X On OS/X you must start MATLAB from the Terminal, e.g. use open /Applications/MATLAB_R2011a.app/ to launch MATLAB. Update with the path to your MATLAB installation. Test by running the following in the MATLAB command window: 1 )

12 MATLAB Bug on OS/X NOTE: there is a bug in some versions of MATLAB under OS/X MATLAB ignores environment variables when you launch it by clicking on the icon in the dock Workaround: Start Terminal Then invoke MATLAB from the Terminal command prompt $ open /Applications/MATLAB_R2011b.app/ $ matlab & # Sometimes this works

13 Knitro Bug on Windows If MATLAB under Windows cannot find Knitro: Copy knitro800.dll to knitro520.dll The name knitro520.dll will depend on the version of MATLAB you are using. See ${KNITRO_DIR}/examples/Matlab/README for details. Try running the function ktrlink() from the MATLAB prompt to verify everything is setup Only applies to older versions of MATLAB and Knitro This occurs for MATLAB R2009 and earlier

14 Knitro Bug on Linux If MATLAB under Linux cannot find Knitro: See the README file in ${KNITRO_DIR}/examples/Matlab You need to copy libknitro.so to the filename MATLAB expects. The name of the file depends on your version of MATLAB: R2008a, R2008b, and R2009a: cd ${KNITRO_DIR}/lib ln -s libknitro.so libknitro.so.5 R2009b, R2010a, or R2010b: cd ${KNITRO_DIR}/lib ln -s libknitro.so libknitro.so.6

15 Test the Installation To make sure your installation works: 1. Open a Terminal (Linux/Mac) or command console (Windows: i.e., execute cmd in Start>Run) 2. cd to the root of your installation 3. Run the example program for knitroampl 4. Test ampl: cd your/path/to/knitro z/knitroampl knitroampl testproblem cd /your/path/to/ampl-z./ampl ampl: model testproblemlp.mod; ampl: display XB; ampl: solve; ampl: display XB, XC; ampl: quit; NOTE: make sure you use \ instead of / on Windows...

Network Team. Document for connecting a Mac to the University VPN system

Network Team. Document for connecting a Mac to the University VPN system Academic Services Information & Computing Services Division Network Team Network Team Document for connecting a Mac to the University VPN system Document reference: Document type: Document status: Review

More information

Citrix Desktop for Home Computers Mac OS Instructions

Citrix Desktop for Home Computers Mac OS Instructions Citrix Desktop for Home Computers Mac OS Instructions You can use Citrix to create and access a virtual work desktop from your home computer. Step 1 Uninstall: To install the newest version of Citrix on

More information

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup Purpose: The purpose of this lab is to setup software that you will be using throughout the term for learning about Python

More information

MRU Secure Remote Access Service (SRAS) User Guide

MRU Secure Remote Access Service (SRAS) User Guide MRU Secure Remote Access Service (SRAS) User Guide The MRU Secure Remote Access Service (SRAS) allows MRU employees and students remote access to internal computing resources including data and computer

More information

Remote Access User Guide for Mac OS (Citrix Instructions)

Remote Access User Guide for Mac OS (Citrix Instructions) (Citrix Instructions) VERSION: 003 PUBLISHED: 2/2018 Page 1 of 8 Remote Access User Guide for Mac OS Please follow the steps outlined in this guide which will show you how to access the Clarion Partners

More information

How to configure the Matlab interface

How to configure the Matlab interface How to configure the Matlab interface 1. MATLAB must be installed For step 2 (required for MATLAB versions 2009b and over), we need to know whether the 32-bit or 64-bit version of MATLAB is installed.

More information

Getting Started with VPN

Getting Started with VPN What is a VPN? VPN (Virtual Private Network) provides you with a way to connect to the HBU campus server securely over the internet in order to access your work computer and shared drives from home. VPN

More information

FileCatalyst HotFolder Quickstart

FileCatalyst HotFolder Quickstart FileCatalyst HotFolder Quickstart Contents 1 Installation... 2 1.1 Verify Java Version... 2 1.2 Perform Installation... 3 1.2.1 Windows... 3 1.2.2 Mac OSX... 3 1.2.3 Linux, Solaris, *nix... 3 1.3 Enable

More information

Appserv Internal Desktop Access Mac OS Device with Safari Browser. Enter your Appserv username and password to sign in to the Website

Appserv Internal Desktop Access Mac OS Device with Safari Browser. Enter your Appserv username and password to sign in to the Website Appserv Desktop Access Logging on from a Mac OS device Step 1. To sign in to the Appserv Desktop Access website, enter the following address into the Safari browser address bar. Please Note: This documentation

More information

WEWORK PRINTER INSTRUCTIONS FOR PAPERCUT. Installing Papercut and Printers for Mac OSX Printing Retrieving Your Prints Frequently Asked Questions

WEWORK PRINTER INSTRUCTIONS FOR PAPERCUT. Installing Papercut and Printers for Mac OSX Printing Retrieving Your Prints Frequently Asked Questions WEWORK PRINTER INSTRUCTIONS FOR PAPERCUT Installing Papercut and Printers for Mac OSX Printing Retrieving Your Prints Frequently Asked Questions Installing Papercut and Printers for Mac OSX Note: Please

More information

Remote Access to Matlab at Mason. CDS-130: Computing for Scientists. Spring Jie Zhang

Remote Access to Matlab at Mason. CDS-130: Computing for Scientists. Spring Jie Zhang Remote Access to Matlab at Mason CDS-130: Computing for Scientists Spring 2013 Jie Zhang Credit: Joseph Marr, Samantha Fleming Accessing Matlab at Mason There are four different methods to access Matlab

More information

Fiery Installation Instructions for the WorkCentre 7300 Series

Fiery Installation Instructions for the WorkCentre 7300 Series Fiery Installation Instructions for the WorkCentre 7300 Series This document describes how to install and set up the Fiery Network Controller for WorkCentre 7300 Series. IMPORTANT: The complete installation

More information

From using an External Harddrive, to a Google Cloud Drive; there is no one way to backup data.

From using an External Harddrive, to a Google Cloud Drive; there is no one way to backup data. Mac (OS X): Data Backup Guide 6/14/2016 Why: Backing up data should be done on a regular basis, not just when you think it is necessary, as a failure can happen at any time. While there are no set intervals

More information

Parallels Software International, Inc. Parallels Compressor. Installation Guide. Server

Parallels Software International, Inc. Parallels Compressor. Installation Guide. Server Parallels Software International, Inc. Parallels Compressor Installation Guide Server (c) 2005-2007 Copyright 2006-2007 by Parallels Software International Inc. All rights reserved. Parallels, Parallels

More information

AutoForm plus R6.0.3 Release Notes

AutoForm plus R6.0.3 Release Notes 0 Release Notes AutoForm plus R6.0.3 Release Notes AutoForm plus R6.0.3 Release Notes...1 1 General Information...2 2 Installation Instructions...3 Front-End and Back-End Windows...3 Prerequisites...3

More information

Knitro Documentation. Release 8.0. Ziena Optimization LLC

Knitro Documentation. Release 8.0. Ziena Optimization LLC Knitro Documentation Release 8.0 Ziena Optimization LLC December 02, 2011 CONTENTS 1 Introduction 3 1.1 Product overview............................................. 3 1.2 Getting KNITRO.............................................

More information

RWT Network System Installation Guide

RWT Network System Installation Guide RWT Network System Installation Guide Copyright 2003, Talking Fingers, Inc. Page 1 of 48 This document is Copyright 2003 by Talking Fingers, Inc. All rights are reserved. This document may not be copied

More information

solidthinking Compose Installation Guide

solidthinking Compose Installation Guide Installation Guide This document describes the installation procedure for Compose 2017.3 on Windows and Linux platforms. Main Installer for Windows To execute the installation, double-click Compose_2017.3_Win64.exe.

More information

Online Backup Client User Manual

Online Backup Client User Manual Online Backup Client User Manual Software version 3.21 For Linux distributions October 2010 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have

More information

Desire2Learn WebDAV User Guide

Desire2Learn WebDAV User Guide Desire2Learn WebDAV User Guide About WebDAV Create a WebDAV connection in Microsoft Windows Setting up WebDAV through Internet Explorer Create a WebDAV connection in Mac OS X Using third-party products

More information

Importing Merit Calendar to Outlook 2010

Importing Merit Calendar to Outlook 2010 Page 1 of 12 Importing Merit Calendar to Outlook 2010 Transferring your calendar from the Merit Mail system to your new Outlook Exchange account is a quick and easy process. There are only two steps to

More information

Installing + Configuring

Installing + Configuring Installing + Configuring Install and Recover with TFTP Introduction This document is designed to help you install the Commotion software if the Install on a Ubiquiti Device instructions did not work, or

More information

Virtual Workplace Personal Device Client Installation Instructions

Virtual Workplace Personal Device Client Installation Instructions Virtual Workplace Personal Device Client Installation Instructions 1 Table of Contents About this Installation Guide... 3 Client Overview... 3 VMware Horizon View Clients... 3 UniPrint Clients... 3 Client

More information

LetItB Installation Manual. Okinawa Institute of Science and Technology Neural Computation Unit

LetItB Installation Manual. Okinawa Institute of Science and Technology Neural Computation Unit Okinawa Institute of Science and Technology Neural Computation Unit Version 1 Dated April 21, 2008 Contents 1. Introduction...3 2. Installation Instructions for Linux and Mac OS...4 3. Xerces-C Library

More information

Required software. Mac OS X In this section, you ll find instructions for downloading and configuring the Arduino IDE in Mac OS X.

Required software. Mac OS X In this section, you ll find instructions for downloading and configuring the Arduino IDE in Mac OS X. Required software You should be able to program your Arduino with just about any computer using a piece of software called an integrated development environment (IDE). To run this software, your computer

More information

How to Install R2017b Updates

How to Install R2017b Updates How to Install R2017b Updates The following instructions apply to all R2017b Updates (Update 1, Update 2, Update 3, etc). See the R2017b Updates Release Notes for information about limitations and bugs

More information

Version 8 Installation Guide: Windows or Mac versions

Version 8 Installation Guide: Windows or Mac versions Version 8 Installation Guide: Windows or Mac versions Copyright 2009 ExpensAble, Inc. Installing ExpensAble Office Version 8 This document contains the following sections: System Requirements ExpensAble

More information

Parallels Software International, Inc. Parallels Compressor. Installation Guide. Workstation

Parallels Software International, Inc. Parallels Compressor. Installation Guide. Workstation Parallels Software International, Inc. Parallels Compressor Installation Guide Workstation (c) 2005-2007 Copyright 2006-2007 by Parallels Software International Inc. All rights reserved. Parallels, Parallels

More information

Cisco Stand-Alone Installation Instructions Linux 64-bit OS

Cisco Stand-Alone Installation Instructions Linux 64-bit OS Cisco Stand-Alone Installation Instructions Linux 64-bit OS IBM s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice at IBM s sole discretion. Information

More information

The Rockefeller University I NFORMATION T ECHNOLOGY E DUCATION & T RAINING. VPN Web Portal Usage Guide

The Rockefeller University I NFORMATION T ECHNOLOGY E DUCATION & T RAINING. VPN Web Portal Usage Guide The Rockefeller University I NFORMATION T ECHNOLOGY E DUCATION & T RAINING VPN Web Portal Usage Guide Table of Contents WHAT IS VPN WEB CLIENT 4 SUPPORTED WEB BROWSERS 4 LOGGING INTO VPN WEB CLIENT 5 ESTABLISHING

More information

SSL VPN INSTALLATION GUIDE

SSL VPN INSTALLATION GUIDE SSL VPN INSTALLATION GUIDE Sonicwall VPN Client Download & Installation Guide For Windows Machines : 1) Open Browser and Browse the following URL to download the client. https://103.237.170.61/cgi-bin/welcome/virtualoffice

More information

CCC ONE Comp-Est. New Install Reference Guide. version 4.5 and above

CCC ONE Comp-Est. New Install Reference Guide. version 4.5 and above CCC ONE Comp-Est New Install Reference Guide version 4.5 and above Quick Reference Guide Table of Contents... 1 Step One: Before you begin... 3 Step Two: Plan your install... 4 Step Three: Start the install...

More information

Step 1: Adding Darwin to your computer

Step 1: Adding Darwin to your computer Step 1: Adding Darwin to your computer You MUST be on GoucherWIFI. If you receive any network connection problems at any point, double-check your WIFI connection. Remove/Move GoucherGuest and GoucherMultimedia

More information

Aqua Accelerated Protocol (AAP) User Manual

Aqua Accelerated Protocol (AAP) User Manual Aqua Accelerated Protocol (AAP) User Manual Table of Contents About Aqua Accelerated Protocol...3 Features... 3 System Requirements... 4 Hardware... 4 Software (AAP Client)... 4 Software (Server Connecting

More information

STARTING THE DDT DEBUGGER ON MIO, AUN, & MC2. (Mouse over to the left to see thumbnails of all of the slides)

STARTING THE DDT DEBUGGER ON MIO, AUN, & MC2. (Mouse over to the left to see thumbnails of all of the slides) STARTING THE DDT DEBUGGER ON MIO, AUN, & MC2 (Mouse over to the left to see thumbnails of all of the slides) ALLINEA DDT Allinea DDT is a powerful, easy-to-use graphical debugger capable of debugging a

More information

Installation Guide for the LuxTrust Middleware under Mac OSX >

Installation Guide for the LuxTrust Middleware under Mac OSX > UG-0251 Installation Guide for the LuxTrust Middleware under Mac OSX > 10.10.5 v0.3 05/09/2016 English Disclaimer This document may not be reproduced as a whole or parts of it without the prior written

More information

Cmpt 101 Lab 1 - Outline

Cmpt 101 Lab 1 - Outline Cmpt 101 Lab 1 - Outline Instructions: Work through this outline completely once directed to by your Lab Instructor and fill in the Lab 1 Worksheet as indicated. Contents PART 1: GETTING STARTED... 2 PART

More information

Johns Hopkins

Johns Hopkins Wireless Configuration Guide: Windows Vista Additional hopkins wireless network instructions and requirements for Windows 8, 7, XP, Mac OS X, Linux, and Mobile versions can be found at: http://www.it.johnshopkins.edu/services/network/wireless/

More information

Clearspan Communicator Desktop R20.2.2

Clearspan Communicator Desktop R20.2.2 Clearspan Communicator Desktop R20.2.2 UPGRADE INSTRUCTIONS APRIL 2015 Table of Contents Overview... 3 Upgrading (Windows 7 or above, Mac OS 10.6 or above)... 3 Recording Your Settings (Windows and Mac

More information

icecube2 Installation (Illustrated) 11-Jan-2012

icecube2 Installation (Illustrated) 11-Jan-2012 icecube2 Installation (Illustrated) 11-Jan-2012 Licenses/Platforms Supported Node-locked License Windows 7 OS, 32-bit / 64-bit Windows XP Professional Floating License Server Windows 7 OS, 32-bit / 64-bit

More information

Generes and Associates. Desktop Setup Guide LANDTECH ONLINE

Generes and Associates. Desktop Setup Guide LANDTECH ONLINE Generes and Associates Desktop Setup Guide LANDTECH ONLINE October 2011 Contents PC USER... 3 Setting up access your SaaS environment... 3 MAC USER... 9 Setting up access to your SaaS environment... 9

More information

ModeChanger

ModeChanger 35020808-02 2015.11 ModeChanger ModeChanger is a software utility that can switch the drive between normal mode and encrypted mode. Operating in encrypted mode will help protect your data. While the drive

More information

REFLEX iogas Desktop Client Installation Guide. Version 5.2

REFLEX iogas Desktop Client Installation Guide. Version 5.2 REFLEX iogas Desktop Client Installation Guide Version 5.2 Contents Technical Specifications... 3 Installation Guide for PC Users... 5 Single-Seat Licensing on PC... 10 PC Licence Trouble Shooting... 12

More information

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE. Product: Virtual Iron Virtualization Manager Version: 4.2

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE. Product: Virtual Iron Virtualization Manager Version: 4.2 VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE This manual provides a quick introduction to Virtual Iron software, and explains how to use Virtual Iron Virtualization Manager to configure

More information

Virtual Desktop Infrastructure Setup for MacOS

Virtual Desktop Infrastructure Setup for MacOS Virtual Desktop Infrastructure Setup for MacOS Virtual Desktop Infrastructure (VDI) allows you to connect to a virtual computer and use software that you don t have installed on your own computer or mobile

More information

Vendio Stores WebDAV Setup & Access

Vendio Stores WebDAV Setup & Access Vendio Stores WebDAV Setup & Access Version 1.1, 09/07/2009 1 Contents Introduction:...3 Setting Up Your WebDAV Account in Windows XP...3 Setting Up Your WebDAV Account in Dreamweaver...12 Setting Up Your

More information

Windows Download & Installation

Windows Download & Installation BrokerMetrics / AgentMetrics Instructions for a New Installation Windows Download & Installation... 1 Macintosh Download & Installation... 6 Troubleshooting... 10 How to verify your installation... 11

More information

Installing AGO2GO on a Mac 10.9 to 10.12

Installing AGO2GO on a Mac 10.9 to 10.12 Installing AGO2GO on a Mac 10.9 to 10.12 This has been confirmed to work with Mac OS X 10.12 "Sierra" We will be installing 2 applications and adding some settings that will streamline the login process.

More information

Murray Bridge High School Connecting to the BYOD Network Mac OS X Version 3 Amended 2/10/2014

Murray Bridge High School Connecting to the BYOD Network Mac OS X Version 3 Amended 2/10/2014 Murray Bridge High School Connecting to the BYOD Network Mac OS X 10.7 10.9 Version 3 Amended 2/10/2014 Use of the Murray Bridge High School BYOD (Bring Your Own Device) facilities and network is subject

More information

How to Update your Oxford University MATLAB TAH Individual License

How to Update your Oxford University MATLAB TAH Individual License How to Update your Oxford University MATLAB TAH Individual License The current MATLAB TAH Campus license expires at the end of August 2018. To continue using MATLAB, the license on your computer needs

More information

Communications Library Manual

Communications Library Manual Delta Tau Power PMAC Communications Library Manual Issue: Date: 1.0 10 th September 2014 NAME DATE SIGNATURE Prepared by Philip Taylor, Observatory Sciences Ltd. 21 March 2013 Andrew Wilson, Observatory

More information

VPN Installation Quick Setup Guide

VPN Installation Quick Setup Guide VPN Installation Quick Setup Guide For computers running This document will help guide you through the process of installing the NJ TRANSIT VPN software on your Apple Macintosh (Mac) OS X computer. If

More information

1. Remove any previously installed versions of the Offline Image Viewer by dragging and dropping the Offline Image Viewer icon into the Trash.

1. Remove any previously installed versions of the Offline Image Viewer by dragging and dropping the Offline Image Viewer icon into the Trash. Installing OIV 2.6 for Macs 1. Remove any previously installed versions of the Offline Image Viewer by dragging and dropping the Offline Image Viewer icon into the Trash. 2. Download the new version of

More information

SAM4S Receipt Printer JPOS Driver. Mac OS X Installation Manual

SAM4S Receipt Printer JPOS Driver. Mac OS X Installation Manual SAM4S Receipt Printer JPOS Driver Mac OS X Contents Table of Contents Table of Contents... 2 1. Introduction... 3 2. Overview... 3 3. Prerequisite... 3 4. Extracting files using GUI... 6 5. Installation

More information

CCC ONE Appraisal Platform

CCC ONE Appraisal Platform CCC ONE Appraisal Platform Installation Guide version 4.5 and above Updated August 2016 Quick Reference Guide Table of Contents... 1 Step One: Before you begin... 3 Step Two: Plan your install... 4 Step

More information

SPOT 5.3 BASIC Software

SPOT 5.3 BASIC Software SPOT 5.3 BASIC Software Imaging Software for Microscopy and Macro-Photography IF YOU ALSO PURCHASED SPOT ADVANCED SOFTWARE OR ANY SPOT ADVANCED SOFTWARE MODULE: This guide and the activation codes below

More information

Applied Informatics POCO PRO C++ Frameworks

Applied Informatics POCO PRO C++ Frameworks Applied Informatics POCO PRO C++ Frameworks Getting Started Guide Version 1.10 Purpose of This Document This document guides developers interested in the POCO PRO C++ Frameworks by Applied Informatics

More information

CCC ONE Comp-Est. Reference Guide for Upgrading to CCC ONE Comp-Est. version 4.2 and above

CCC ONE Comp-Est. Reference Guide for Upgrading to CCC ONE Comp-Est. version 4.2 and above CCC ONE Comp-Est Reference Guide for Upgrading to CCC ONE Comp-Est version 4.2 and above Quick Reference Guide Table of Contents... 1 Step One: Before you begin... 3 Step Two: Plan your install... 4 Step

More information

Installing the Cisco Prime Optical Client

Installing the Cisco Prime Optical Client CHAPTER 7 This chapter describes how to install and start the Cisco Prime Optical 9.3.1 client on Windows, Solaris, or Linux. When you install the Prime Optical client, you automatically install Cisco

More information

Océ User manual. Océ Printer Driver for Adobe Postscript 3. Océ PS3 Installation Guide

Océ User manual. Océ Printer Driver for Adobe Postscript 3. Océ PS3 Installation Guide Océ User manual Océ Printer Driver for Adobe Postscript 3 Océ PS3 Installation Guide Océ-Technologies B.V. Copyright 2009 Océ All rights reserved. No part of this work may be reproduced, copied, adapted,

More information

Contents. Anaplan Connector for MuleSoft

Contents. Anaplan Connector for MuleSoft SW Version 1.1.2 Contents 1 Overview... 3 2 Mulesoft Prerequisites... 4 3 Anaplan Prerequisites for the Demos... 5 3.1 export demo mule-app.properties file...5 3.2 import demo mule-app.properties file...5

More information

Getting Started Guide. Installation and Setup Instructions. For version Copyright 2009 Code 42 Software, Inc. All rights reserved

Getting Started Guide. Installation and Setup Instructions. For version Copyright 2009 Code 42 Software, Inc. All rights reserved Installation and Setup Instructions For version 06.11.2009 Copyright 2009 Code 42 Software, Inc. All rights reserved About This Guide This guide shows you how to install, activate and back up with CrashPlan

More information

IMC inode Intelligent Client v7.0 (E0106) Copyright (c) Hewlett-Packard Development Company, L.P. and its licensors.

IMC inode Intelligent Client v7.0 (E0106) Copyright (c) Hewlett-Packard Development Company, L.P. and its licensors. IMC inode Intelligent Client v7.0 (E0106) Copyright (c) 2011-2014 Hewlett-Packard Development Company, L.P. and its licensors. Table of Contents 1. What's New in this Release 2. Problems Fixed in this

More information

eftp Application User Guide

eftp Application User Guide Team A eftp User Guide 1/30 eftp Application User Guide Table of Contents Page 1. Acknowledgement 2 2. Introduction a. Welcome eftp Audience 3 b. What s in this manual 3 c. Manual Conventions 3 d. Getting

More information

Creating Avid Projects, and Media Sharing with Small Tree TitaniumZ

Creating Avid Projects, and Media Sharing with Small Tree TitaniumZ When using Avid Media Composer System with Small Tree's Titanium Z storage, there are a few steps to take to share project and media files. It is important to note that While Small Tree can work in an

More information

How to connect to the University of Exeter VPN service

How to connect to the University of Exeter VPN service How to connect to the University of Exeter VPN service *****Important Part of the process of using the VPN service involves the automatic download and installation of Juniper Network Connect software,

More information

GridPro v6.0 INSTALLATION GUIDE

GridPro v6.0 INSTALLATION GUIDE GridPro v6.0 INSTALLATION GUIDE TABLE OF CONTENTS 1. DOWNLOADING GridPro 1 2. CD CONTENTS 1 3. REQUIRED PACKAGES 1 4. SYSTEM REQUIREMENTS 2 5. INSTALLATION PROCEDURE 2 5.1 INSTALLATION PROCEDURE FOR WINDOWS

More information

GT 062 3TB Quickstart Addendum

GT 062 3TB Quickstart Addendum GT 062 3TB Quickstart Addendum NOTE: This document is an addendum to the GT 062 manual, and is intended for the GT 062 3TB model only. 610028 GT 062 3TB Quickstart Addendum.pdf June 17, 2009 The GT 062

More information

Retrieve Download File from CSDI Installation Instructions

Retrieve Download File from CSDI Installation Instructions Retrieve Download File from CSDI Installation Instructions Rev. 12-001 FOOD & NUTRITION MANAGEMENT SYSTEMS This instruction sheet provides instructions for installing our Retrieve Download File from CSDI

More information

CCC ONE Total Claims Solution. New Install and Set Up Reference Guide. version and above

CCC ONE Total Claims Solution. New Install and Set Up Reference Guide. version and above CCC ONE Total Claims Solution New Install and Set Up Reference Guide version 1.6.4 and above Information Services Inc. Table of Contents... 1 Before you begin... 3 Plan your install... 4 Start the install...

More information

Clear Cache Guide Click here for Windows guide Click here for Mac OS guide

Clear Cache Guide Click here for Windows guide Click here for Mac OS guide Velocity@ocbc Clear Cache Guide Click here for Windows guide Click here for Mac OS guide Version 1.0 1 of 18 Step 1: Check your browser version 1. Type www.whatismybrowser.com at the address bar and press

More information

Outlook 2003 Desktop Configuration for Remote Access User Guide

Outlook 2003 Desktop Configuration for Remote Access User Guide Outlook 2003 Desktop Configuration for Remote Access User Guide Outlook 2003 Desktop Configuration for Remote Access 1 of 9 Transferring Microsoft Outlook Data How to Export Personal Folders (.pst) File

More information

AutoForm plus R7.0.2 Release Notes

AutoForm plus R7.0.2 Release Notes 0 Release Notes AutoForm plus R7.0.2 Release Notes 1 General Information...2 2 Installation Instructions...3 Front-End and Back-End Windows...3 Prerequisites...3 Download of Installation Files...3 Installation...3

More information

NET-DYN USB Dual Band (Mediatek) Installation Guide. This manual is divided into three parts: Windows XP, Windows 7 / 8 / 8.

NET-DYN USB Dual Band (Mediatek) Installation Guide. This manual is divided into three parts: Windows XP, Windows 7 / 8 / 8. Installation Guide NET-DYN USB Dual Band (Mediatek) Installation Guide This manual is divided into three parts: Windows XP, Windows 7 / 8 / 8.1 /10, and Mac 1.Windows XP Please do the following steps to

More information

Parallels Remote Application Server

Parallels Remote Application Server Parallels Remote Application Server Parallels Client for Mac User's Guide v16 Parallels International GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 672 20 30 www.parallels.com Copyright

More information

CSCI 201 Lab 1 Environment Setup

CSCI 201 Lab 1 Environment Setup CSCI 201 Lab 1 Environment Setup "The journey of a thousand miles begins with one step." - Lao Tzu Introduction This lab document will go over the steps to install and set up Eclipse, which is a Java integrated

More information

Installation notes (highlights)

Installation notes (highlights) Installation notes (highlights) The installation procedure of FSDA relies on a setup executable (or Linux bash script) which should execute all the necessary steps automatically in less than one minute.

More information

Johns Hopkins

Johns Hopkins Wireless Configuration Guide: Windows 8 Additional hopkins wireless network instructions and requirements for Windows XP, Vista, 7, Mac OS X, Linux, and other Mobile versions can be found at: http://www.it.johnshopkins.edu/services/network/wireless/

More information

UNT System Campus VPN Guide

UNT System Campus VPN Guide Contents Introduction... 3 SSL Web Portal... 4 Installing AnyConnect VPNClient... 12 Connecting AnyConnect VPN client... 16 IPSec Client Configuration... 18 Apple OS X Configuration... 21 Android Configuration...

More information

Welcome to Kmax Installing Kmax

Welcome to Kmax Installing Kmax Welcome to Kmax 10.2 Kmax is a cross-platform, Java-based application that will run on Windows, Linux, or Mac OS X. This distribution of Kmax replaces all previous releases except for Kmax on Mac OS X

More information

Aventail Connect Client with Smart Tunneling

Aventail Connect Client with Smart Tunneling Aventail Connect Client with Smart Tunneling User s Guide Windows v8.9.0 1996-2007 Aventail Corporation. All rights reserved. Aventail, Aventail Cache Control, Aventail Connect, Aventail Connect Mobile,

More information

AutoForm plus R5.2.4 Release Notes

AutoForm plus R5.2.4 Release Notes 0 Release Notes AutoForm plus R5.2.4 Release Notes 1 General Information...2 2 Installation Instructions...3 Front-End and Back-End Windows...3 Prerequisites...3 Download of Installation Files...3 Installation...4

More information

Using X-Particles with Team Render

Using X-Particles with Team Render Using X-Particles with Team Render Some users have experienced difficulty in using X-Particles with Team Render, so we have prepared this guide to using them together. Caching Using Team Render to Picture

More information

UPDATING SOCRATES Version Build May 2018

UPDATING SOCRATES Version Build May 2018 UPDATING SOCRATES Version 3.5.8.7 Build 10124 May 2018 10124 Update ALL USERS... 1 MAC USERS... 1 When to run the update... 1 XP USERS... 1 How often to update... 1 Registering to access the client section

More information

Installation Guide for FTMS and Node Manager

Installation Guide for FTMS and Node Manager Installation Guide for FTMS and Node Manager Table of Contents Windows... 2 Installing FTMS... 2 Launching FTMS... 2 Client... 3 Stopping FTMS Server... 3 Installing Standalone Node Manager... 3 Launching

More information

GUT. GUT Installation Guide

GUT. GUT Installation Guide Date : 02 Feb 2009 1/5 GUT Table of Contents 1 Introduction...2 2 Installing GUT...2 2.1 Optional Extensions...2 2.2 Installing from source...2 2.3 Installing the Linux binary package...4 2.4 Installing

More information

Artelys License Manager 10.3 User s Manual

Artelys License Manager 10.3 User s Manual Artelys License Manager 10.3 User s Manual Artelys License Manager User s Manual Version 10.3 Artelys S.A. www.artelys.com July 20, 2017 c 2006-2017 Artelys S.A. Contents 1 Introduction 1 2 Stand-Alone

More information

Ebrary User Guide. Downloading a Book: Reading ebrary books online: Accessing BookShelf: Using the Bookshelf:

Ebrary User Guide. Downloading a Book: Reading ebrary books online: Accessing BookShelf: Using the Bookshelf: Ebrary User Guide Downloading a Book: Reading ebrary books online: Accessing BookShelf: Using the Bookshelf: ebrary Mobile App Installation and Sign in procedure: Using ebrary App in ipad iphone ipod:

More information

KNITRO Documentation. Release 9.0. Ziena Optimization LLC

KNITRO Documentation. Release 9.0. Ziena Optimization LLC KNITRO Documentation Release 9.0 Ziena Optimization LLC December 11, 2013 CONTENTS 1 Introduction 3 1.1 Product overview............................................. 3 1.2 Getting KNITRO.............................................

More information

NETSTORAGE via WINDOWS XP NETDRIVE

NETSTORAGE via WINDOWS XP NETDRIVE NETSTORAGE via WINDOWS XP NETDRIVE 1.0 INTRODUCTION NetStorage enables you to access your Network drive (H drive for Annin and Ridge users, P drive for elementary users) and other shared drives when you

More information

FREQUENTLY ASKED QUESTIONS... 2 DOWNLOADING AND INSTALLING THE APPLICATION Microsoft Windows Apple Mac Proxy Authentication...

FREQUENTLY ASKED QUESTIONS... 2 DOWNLOADING AND INSTALLING THE APPLICATION Microsoft Windows Apple Mac Proxy Authentication... Contents FREQUENTLY ASKED QUESTIONS... 2 DOWNLOADING AND INSTALLING THE APPLICATION... 5 Microsoft Windows... 5 Apple Mac... 10 Proxy Authentication... 12 Error Console... 13 Microsoft Windows... 13 Apple

More information

Johns Hopkins

Johns Hopkins Wireless Configuration Guide: Windows Vista Additional hopkins wireless network instructions and requirements for Windows XP, Mac OS X, and Linux can be found at: http://www.it.jhu.edu/networking/wireless/

More information

SIS offline. Getting Started

SIS offline. Getting Started SIS offline We highly recommend using Firefox version 3.0 or newer with the offline SIS. Internet Explorer is specifically not recommended because of its noncompliance with internet standards. Getting

More information

Printer Setup Instructions

Printer Setup Instructions Before you begin Printer Setup Instructions Please make sure you have administrative rights on your computer before proceeding with the install. Step 1. Download the Printer Drivers Kyocera Printer Drivers

More information

CS Druva insync User Guide. 28 th Oct. 2011

CS Druva insync User Guide. 28 th Oct. 2011 CS Druva insync User Guide 28 th Oct. 2011 Contents Installing the Druva insync Client... 1 1. Installation Prerequisites... 1 2. Installation on Microsoft Windows 7/ Vista/ XP... 1 3. Installation on

More information

Setting up my Dev Environment ECS 030

Setting up my Dev Environment ECS 030 Setting up my Dev Environment ECS 030 1 Command for SSHing into a CSIF Machine If you already have a terminal and already have a working ssh program (That is, you type ssh into the terminal and it doesn

More information

Full System Restore Manually Run Cmd Prompt

Full System Restore Manually Run Cmd Prompt Full System Restore Manually Run Cmd Prompt Xp To start System Restore from Command Prompt or Run dialog, type rstrui.exe and press Enter. Windows XP, System Restore, Restoration Complete. Click OK. This

More information

Linux hep.wisc.edu

Linux hep.wisc.edu Linux Environment @ hep.wisc.edu 1 Your Account : Login Name and usage You are given a unique login name (e.g. john) A temporary password is given to you Use this to login name and password to enter the

More information

iogas Classic Server Licence Installation Guide Version 6.0

iogas Classic Server Licence Installation Guide Version 6.0 iogas Classic Server Licence Installation Guide Version 6.0 Contents Server Licence Technical Specifications... 4 Classic Server Licence Model... 5 Installation Steps... 5 Server Licence Usage Files...

More information

The Definitive Guide to Fractal Awesomeness with J-WildFire!

The Definitive Guide to Fractal Awesomeness with J-WildFire! Installing Java and J-WildFire - by Martin Flink Copyright 2013 Martin Flink All Rights Reserved. No part of this document may be reproduced in any form without permission in writing from the author. Contact:

More information