Lesson 2: Preparation

Size: px
Start display at page:

Download "Lesson 2: Preparation"

Transcription

1 Lesson 2: Preparation Using the EartH2Observe data portal to analyse drought indicators 1 Preface This is a step by step tutorial that will help you install all the software required for the further lessons in the ecourse Using the EartH2Observe data portal to analyse drought indicators. It is important that all software is installed and ready to use prior to continuing with this course, in order to be able to fully undertake all the steps in the course. This step by step guide in making the necessary preparations is specifically written for Windows operating systems. For Lesson 4 it is required to work with python scripts. The version of Python we will use in this session is the Anaconda distribution, which includes the most essential python packages, allows for easy installation of new packages and is thus used throughout the session. The prerequisites for taking part in the special session are that users have the following (installed): A google account Anaconda Navigator Python packages: NetCDF4 mpl_toolkits.basemap In this guide we provide a detailed, step by step procedure to establish a google account and install the required version of Python. Table of Contents 1 Preface 1 2 Setting up a Google Account 2 3 Anaconda Navigator Download and Install Anaconda Navigator Test Correct Installation of Anaconda Navigator Add the Python Path in the Environment Variables Test the Environment Variables Path 11 4 Python Packages Install netcdf Install mpl_toolkits.basemap Test Correct Installation of the Python Packages 14 1

2 2 Setting up a Google Account For the first part of the session, you will need to have a google account. If you already have a Google account you can skip this step. If you do not already have one, open an internet browser, such as Google Chrome, Mozilla Firefox, Internet Explorer or Safari. Go to accounts.google.com/signup and fill in all the fields on the righthand side. 2

3 3 Anaconda Navigator 3.1 Download and Install Anaconda Navigator For the second part of the workshop, we will work with existing python scripts. In order to do so, you will need Anaconda Navigator as well as two additional packages installed and working on your computer. NOTE: Step 1: Step 2: Please ensure that there are no existing versions of python on your computer, as this will result in conflicts during the installation and the workshop. Open an internet browser and go to Download the version Python 2.7, for Windows, MacOS or Linux, depending on your operating system. Choose the 64 Bit or 32 Bit version according to your own computer. This does not affect the rest of this tutorial. 3

4 Step 3: Open the installer and click next. Step 4: Accept the Licence Agreement, click I agree. 4

5 Step 5: Select the type of installation (one or all users) and click next. Step 6: Select the destination folder using Browse (such as the Programe_Files folder as is used in this tutorial) and click next. 5

6 NOTE: Make sure there are no spaces in the folder path, python will give a warning otherwise. Also ensure there is enough available disk space (1.8 GB). Step 7: For the Advanced Installation Options, just select the default one Register Anaconda as my default Python 2.7 and click Install. This may take a while. NOTE: We assume you do not have admin access on your computer. If you do have admin access, you can also check the box for Add Anaconda to my PATH environment variable. If you do not check this box, we will add the path after the installation, in Section 3.3 Add the Python Path in the Environment Variables. 6

7 Step 8: Once the installation is complete, click Next and Finish. 7

8 3.2 Test Correct Installation of Anaconda Navigator Step 9: Now that Anaconda Navigator is installed, we will check if it is working using the Anaconda Prompt. Go to start, then type Anaconda Prompt and press enter. Step 10: Type python version and press enter. You will now see the version of Python and Anaconda that are installed on your computer like here below. 3.3 Add the Python Path in the Environment Variables So far we have only used Anaconda Prompt to see if python was working. Now we will manually add the paths for both Anaconda and Python, so we can use it in the command prompt as well. NOTE: This part is only necessary if you did not select the Add Anaconda to my PATH environment variable in Step 7. Step 11: Type in your Anaconda Prompt where conda and press enter. This will show you the folder path of where anaconda is installed. In this tutorial, the path is: C:\Program_Files\Anaconda2\Scripts Type in your Anaconda Prompt where python and press enter. In this tutorial, the path to python is: C:\Program_Files\Anaconda2 8

9 Step 12: Now you will add your paths to anaconda and python manually. Go to your computer (in Windows 10 it is called This PC) and right click, go to Properties Step 13: Go to Advanced System Settings 9

10 Step 14: Go to Environment Variables Step 15: At the section System Variables go to New 10

11 Step 16: At the field Variable name, type PATH At the field Variable value, type the path to the conda.exe file;path to the python.exe file In this example it is: C:\Program_Files\Anaconda2\Scripts;C:\Program_Files\Anaconda2 Step 17: Click OK at all fields that are still open (New System Variable, Environment Variables, and System Properties) to verify all changes. 3.4 Test the Environment Variables Path Now that the paths to Anaconda and Python are manually added, we will check if the computer can indeed find the paths using the command prompt. Step 18: Open a Command Prompt: Go to Start Type cmd.exe Press enter or click on the Command Prompt to open it Step 19: Type python version and press enter As you can see, the version for python is now shown from the command prompt as well. The computer can thus find the paths to Anaconda and Python correctly. 11

12 4 Python Packages Now that you successfully installed Anaconda Navigator and Python 2.7, we will install two packages that will be used in the workshop as well. These packages are netcdf4 and mpl_toolkits.basemap. You will see that this is relatively easy due to the successful instalment of Anaconda Navigator. 4.1 Install netcdf4 Step 20: Open a command prompt. Go to Start and type cmd.exe, and press enter or click on the Command Prompt to open it. Step 21: Type conda install netcdf4 Step 22: It will ask you to proceed, type y and press enter 4.2 Install mpl_toolkits.basemap Step 23: First download the geos package by typing: conda install geos Again, it will ask you to proceed, type y and press enter. 12

13 Step 24: Now install pip, by typing: conda install pip Step 25: Go to the following website: And download the file basemap cp27 cp27m win_amd64.whl Step 26: Depending on the settings of your web browser, the file basemap cp27 cp27mwin_amd64.whl may be downloaded to a specific download directory. In this case, you can either keep the file in the downloads directory, or move the file to the directory where the Python packages are installed, in this tutorial this would be: C:\Program_Files\Anaconda2\pkgs NOTE: The directory of where the basemap cp27 cp27m win_amd64.whl file is located is required for step 29. Step 27: Change the directory in the command prompt to the same folder, type: cd C:\Your_path\Anaconda2\pkgs In this tutorial, the path is C:\Program_Files, so it would be: cd C:\Program_Files\Anaconda2\pkgs Step 28: Install pyproj. In order to do so, type in the command prompt: conda install pyproj Again it asks to proceed, type y and press enter 13

14 Step 29: Install mpl_toolkits.basemap by typing in the command prompt: pip install basemap cp27 cp27m win_amd64.whl Note that depending on the settings of your web browser, the file basemap cp27 cp27mwin_amd64.whl may be downloaded to a specific download directory. In this case you can either move the file to the directory you are working in, or add the full path name to the above comment. If for example the download directory is d:\downloads then the above command should be: pip install d:\downloads\basemap cp27 cp27m win_amd64.whl You will receive the message that you have successfully installed the mpl_toolkits.basemap package. Step 30: Close the command prompt, so all changes are saved. 4.3 Test Correct Installation of the Python Packages Step 31: Open a new command prompt (again, click on start, type cmd, press enter) Step 32: Type spyder and press enter. Now Spyder, which is automatically installed with Anaconda Navigator, will be automatically opened. 14

15 Step 33: Ignore the installation of any updates Step 34: Test if the netcdf4 package is working, type in the IPython console (at the bottom right) : import netcdf4 as nc and press enter 15

16 Step 35: Test if the mpl_toolkits.basemap package is working, type: from mpl_toolkits.basemap import Basemap and press enter If there are no error messages, you have successfully installed Anaconda, Python 2.7, and the packages netcdf4 and mpl_toolkits.basemap. Note that in some cases difficulties may be experienced with the installation of Basemap. If this is the case, please try and use forums on internet to find solutions, as there are several forums available. If it proves impossible then the use of Basemap can be avoided, though the maps developed in the tutorial may not be as elegant as with Basemap. 16

3.1 Getting Software and Certificates

3.1 Getting Software and Certificates 3 Configuring the Remote Client On the remote client you have to download the Sophos SSL VPN Client software including configuration data from the UTM User Portal. Then you install the software package

More information

How to install HDRestaurant CS(Client Server)?

How to install HDRestaurant CS(Client Server)? How to install HDRestaurant CS(Client Server)? HDRestaurant is a feature-rich, easy to use Point of Sale billing, inventory, and accounting management software available for a 30 days FREE TRIAL.The client

More information

How to install HDSalon CS (Client Server)?

How to install HDSalon CS (Client Server)? How to install HDSalon CS (Client Server)? HDSalon comes with lots of attractive features which makes it the best salon software for your business. HDSalon for your Hair Salon, Spas and Beauty Salon available

More information

How to install HDSME Client Server?

How to install HDSME Client Server? How to install HDSME Client Server? HDSME is an enterprise management software which provides all the necessary features for you do Sales, Purchases, Inventory, and Financial Accounting. HDSME is feature

More information

Neehr Perfect EHR Quick Guide on Installing the Citrix Plugin

Neehr Perfect EHR Quick Guide on Installing the Citrix Plugin Neehr Perfect EHR Quick Guide on Installing the Citrix Plugin The first time you log in to Neehr Perfect on any computer, you will be prompted to install the Citrix plugin for your web browser. The installation

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

PYOTE installation (Windows) 20 October 2017

PYOTE installation (Windows) 20 October 2017 PYOTE installation (Windows) 20 October 2017 Outline of installation: 1. Install Anaconda from Internet 2. Install PYOTE from Internet 3. Test PYOTE installation 4. Add desktop icon to simplify starting

More information

Neehr Perfect Guide: Installing the Citrix Plugin

Neehr Perfect Guide: Installing the Citrix Plugin Neehr Perfect Guide: Installing the Citrix Plugin Overview This guide covers how to install the Citrix plugin. The first time you log in to Neehr Perfect on any computer, you will be prompted to install

More information

Transfer Manager.NET Installation Guide

Transfer Manager.NET Installation Guide Transfer Manager.NET 3.4.0.0 Installation Guide Instructions for Downloading the Client... 2 New Installation... 3 Upgrading from Older Versions of TM.Net... 7 Upgrading from Transfer Manager 2.x or Earlier...

More information

IMDG Code for Intranet

IMDG Code for Intranet Version 11 Installation Instructions System Requirements These files should be loaded on a server running ASP.NET 2.0, and with at least 26 Mb of free disk space. For clients to access the application

More information

Building a 64-bit CentOS 7 Workstation using Oracle Virtual Box

Building a 64-bit CentOS 7 Workstation using Oracle Virtual Box Building a 64-bit CentOS 7 Workstation using Oracle Virtual Box jthomas Enterprises, 2016 Building a CentOS 7 Workstation using Oracle VirtualBox 1 Section 1 Before You Begin This section details the environment

More information

Getting started with Python

Getting started with Python Getting started with Python (i.e. installing and testing it) 2018 From original slides by Tony Cahill What is Python? Python is a free computer language that was created in 1991 It has many add-ons (called

More information

Ricoh Managed File Transfer (MFT) User Guide

Ricoh Managed File Transfer (MFT) User Guide Ricoh Managed File Transfer (MFT) User Guide -- TABLE OF CONTENTS 1 ACCESSING THE SITE... 3 1.1. WHAT IS RICOH MFT... 3 1.2. SUPPORTED BROWSERS... 3 1.3. LOG IN... 3 1.4. NAVIGATION... 4 1.5. FORGOTTEN

More information

LINK2FEED INSTRUCTION AID TOPIC: (1) User Log In & Password Reset

LINK2FEED INSTRUCTION AID TOPIC: (1) User Log In & Password Reset PURPOSE This instruction aid covers user login and password renewal and password reset. AUDIENCE Agency employees and volunteers who access Link2Feed PREREQUISITES Notification of account creation and

More information

Course Folder and Files Instructions for download and use

Course Folder and Files Instructions for download and use Course Folder and Files Instructions for download and use About course folders and files Please read this page carefully! Most, but not all of our courses, at certain points in each chapter, instruct you

More information

JCCC Virtual Labs. Click the link for more information on installing on that device type. Windows PC/laptop Apple imac or MacBook ipad Android Linux

JCCC Virtual Labs. Click the link for more information on installing on that device type. Windows PC/laptop Apple imac or MacBook ipad Android Linux JCCC Virtual Labs Revision 9/21/2017 http://ats.web. Welcome to the JCCC Virtual Lab Environment. This system allows students to access campus software titles on their personal computers from almost anywhere.

More information

INSTALLATION INSTRUCTIONS FOR IPYTHON ENVIRONMENT

INSTALLATION INSTRUCTIONS FOR IPYTHON ENVIRONMENT ENGL-S3024 Computational Methods for Literary and Cultural Criticism INSTALLATION INSTRUCTIONS FOR IPYTHON ENVIRONMENT Instructor: Graham Sack CCNMTL: Jonah Bossewitch Anders Pearson OVERVIEW Why am I

More information

1. Navigate to in a browser.

1. Navigate to  in a browser. How to install HDReports Website? HDReports allows you to run reports from anywhere on the internet including on your smartphone. All your reports including the customized reports can be run using HDReports

More information

Installation Guide for Python

Installation Guide for Python GPDI 513 Beginner s Guide to the Python Programming Language Installation Guide for Python Linux Operating System If you are using a Linux computer, open the terminal and type the following commands in

More information

AP Computer Science Principles Summer Assignment

AP Computer Science Principles Summer Assignment AP Computer Science Principles Summer Assignment Due date: September 2017 Instructor: Mr. Alwin Tareen Downloading and Installing the Anaconda Integrated Development Environment(IDE) The following is a

More information

CCC VMware Workstation Installation Guide Document Version build 007

CCC VMware Workstation Installation Guide Document Version build 007 CCC VMware Workstation Installation Guide Document Version 1.0-02.00.4 build 007 Table of Content Typographic Convention... 3 Preface... 4 System Requirements... 4 Installation Procedure... 4 CCC Virtual

More information

Getting Started with. Management Portal. Version

Getting Started with. Management Portal. Version Getting Started with Management Portal Version 10.1.0.0 Copyright RES Software Development B.V. All rights reserved. Commercial Computer Software documentation/data Restricted Rights. RES and RES ONE are

More information

2015 Beta 2 Tutorials

2015 Beta 2 Tutorials 2015 Beta 2 Tutorials 2015 Beta 2 FOR WINDOWS & UNIX & LINUX Contents 1 Tutorial 2: Config, Deploy & Run the Application... 1 1.1 Task 1: Configure the database type... 1 1.2 Task 2: Configure the database

More information

Acronis Backup & Recovery 11 Beta Advanced Editions

Acronis Backup & Recovery 11 Beta Advanced Editions Acronis Backup & Recovery 11 Beta Advanced Editions Quick Start Guide Table of contents 1 Main components... 3 2 Supported operating systems... 3 3 Where do I install the components?... 3 4 What you need

More information

Browser Support Internet Explorer

Browser Support Internet Explorer Browser Support Internet Explorer Consumers Online Banking offers you more enhanced features than ever before! To use the improved online banking, you may need to change certain settings on your device

More information

Training Bulletin TITLE: CHIP-CARD BROWSER RECOMMENDATIONS AUDIENCE: GENERAL MANAGERS, FRONT DESK STAFF DATE: DECEMBER 12. Intro

Training Bulletin TITLE: CHIP-CARD BROWSER RECOMMENDATIONS AUDIENCE: GENERAL MANAGERS, FRONT DESK STAFF DATE: DECEMBER 12. Intro TITLE: CHIP-CARD BROWSER RECOMMENDATIONS AUDIENCE: GENERAL MANAGERS, FRONT DESK STAFF DATE: DECEMBER 12 Intro As a web-based application, the choiceadvantage Property Management System is impacted by the

More information

Firmware Update Release: Firmware Update. Written By: Q-See qplus.dozuki.com/ Page 1 of 9

Firmware Update Release: Firmware Update. Written By: Q-See qplus.dozuki.com/ Page 1 of 9 Firmware Update Written By: Q-See 2018 qplus.dozuki.com/ Page 1 of 9 INTRODUCTION CAUTION: Updating the firmware incorrectly or using an update on the wrong DVR can permanently damage the chipset on the

More information

Installation Guide. Apparo Fast Edit. For Windows Server IBM Cognos Analytics. Version Single Instance

Installation Guide. Apparo Fast Edit. For Windows Server IBM Cognos Analytics. Version Single Instance Installation Guide Apparo Fast Edit For Windows Server 2008-2016 IBM Cognos Analytics Version 3.0.7.1 Single Instance [1] 1 Prior to Installation 4 1.1 Hardware requirements... 4 1.2 Supported operating

More information

Installation Guide: VirtualBox, Windows 10, and Microsoft Visio (Mac OS)

Installation Guide: VirtualBox, Windows 10, and Microsoft Visio (Mac OS) (434) 924-7988, RRH 219 helpdesk@comm.virginia.edu Installation Guide: VirtualBox, Windows 10, and Microsoft Visio (Mac OS) Prerequisites: Verify that your installation of OS X and Safari have the most

More information

Dynamic Work Order System (DWOS) Installation Guide

Dynamic Work Order System (DWOS) Installation Guide Dynamic Work Order System (DWOS) Installation Guide The Future of Job Shop Software 4506 Hwy. 20 Suite 200 Niceville, FL 32578 Phone (800) 725-7304 Support@ds2corp.com www.getdwos.com Copyright Notice

More information

This tutorial demonstrates the Fire Flow analysis tools and options available in CityWater. Requirements

This tutorial demonstrates the Fire Flow analysis tools and options available in CityWater. Requirements Tutorial How to view use the Fire Flow features for your project Objectives This tutorial demonstrates the Fire Flow analysis tools and options available in. Prerequisites Login and User Profile Requirements

More information

Dell Connections License Manager Version 1.1 Installation Guide

Dell Connections License Manager Version 1.1 Installation Guide Dell Connections License Manager Version 1.1 Installation Guide Contents 1 About Dell Connections License Manager... 3 System Requirements...3 2 Setting Up Dell Connections License Manager...5 Prerequisites...

More information

erequest Frequently Asked Questions

erequest Frequently Asked Questions Which browsers work with? The following browsers are compatible with version 3.5. Internet Explorer version 8 Internet Explorer version 9 Firefox (Mozilla) Chrome (version 28) Safari (prior to version

More information

Browser Checklist. Objective. Content. 1) Zurich recommended browser

Browser Checklist. Objective. Content. 1) Zurich recommended browser Browser Checklist Objective To ensure that agents have the fastest and best experience of Zurich einsurance portal. By checking that agents have the best browser on the computers. By creating a shortcut

More information

etrac Guide System Requirements Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA , All Rights Reserved.

etrac Guide System Requirements Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA , All Rights Reserved. etrac Guide to System Requirements Version: 2.5 Published: 05/18/2015 Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA 19446 2015, All Rights Reserved. Table of Contents Minimum System Requirements...

More information

Storebox User Guide. Swisscom (Switzerland) Ltd.

Storebox User Guide. Swisscom (Switzerland) Ltd. Storebox User Guide Swisscom (Switzerland) Ltd. Contents (/). Basics/Settings 4. What is Storebox? 5. File Structure 6.3 System Prerequisites 7.4 Logging in to the team portal 8.5 Logging out of the team

More information

WA2056 Building HTML5 Based Mobile Web Sites. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA2056 Building HTML5 Based Mobile Web Sites. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA2056 Building HTML5 Based Mobile Web Sites Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum

More information

How to export and import bookmarks (or favorites) for common web browsers:

How to export and import bookmarks (or favorites) for common web browsers: How to export and import bookmarks (or favorites) for common web browsers: 1. Open your usual web browsing software (ie, Internet Explorer, Firefox, Safari, etc.). For Internet Explorer: 1. Exporting bookmarks.

More information

Connecting to the Virtual Desktop Infrastructure (VDI)

Connecting to the Virtual Desktop Infrastructure (VDI) System Office IT Connecting to the Virtual Desktop Infrastructure (VDI) There are four ways to connect to the system office Virtual Desktop Infrastructure (VDI): Web client Windows client - personal computer

More information

Ekran System v.5.5 Getting Started

Ekran System v.5.5 Getting Started Ekran System v.5.5 Getting Started Table of Contents About... 4 System Requirements... 5 Program Structure... 8 Getting Started... 10 Server and Database... 11 Installing the Server... 11 Database Types

More information

Remote Access for End User Reference Guide for EpicConnect Access

Remote Access for End User Reference Guide for EpicConnect Access PRESBYTERIAN HEALTHCARE SERVICES Remote Access for End User Reference Guide for EpicConnect Access Version 1.0 12/27/2013 This remote access end user reference guide provides an overview of how to install

More information

WA1827 Cloud Programming Workshop. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA1827 Cloud Programming Workshop. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA1827 Cloud Programming Workshop Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum Software

More information

Installing CHART To simplify the process, we have included the software with this guide.

Installing CHART To simplify the process, we have included the software with this guide. Setting up CHART This procedure provides a step by step guide to installing and updating the Primis CHART tool which is used for the Diabetes Deep Dive project. Prerequisites 1. Local admin account for

More information

Halcyon Message Sender GUI. v6.0 User Guide

Halcyon Message Sender GUI. v6.0 User Guide GUI v6.0 User Guide Copyright Copyright HelpSystems, LLC. All rights reserved. www.helpsystems.com US: +1 952-933-0609 Outside the U.S.: +44 (0) 870 120 3148 IBM, AS/400, OS/400, System i, System i5, i5/os,

More information

Episode 1 Using the Interpreter

Episode 1 Using the Interpreter Episode 1 Using the Interpreter Anaconda We recommend, but do not require, the Anaconda distribution from Continuum Analytics (www.continuum.io). An overview is available at https://docs.continuum.io/anaconda.

More information

Web Applications Installation. version 12.17

Web Applications Installation. version 12.17 version 12.17 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates and functional content

More information

CCH Client Axcess Portal User Guide

CCH Client Axcess Portal User Guide CCH Client Axcess Portal User Guide Tips Best practice tips and shortcuts Icon Legend Notes Warning Informational notes about functions Important warnings about a function CCH Client Axcess https://www.clientaxcess.com

More information

Dell SupportAssist Version 2.1 for Dell OpenManage Essentials Quick Setup Guide

Dell SupportAssist Version 2.1 for Dell OpenManage Essentials Quick Setup Guide Dell SupportAssist Version 2.1 for Dell OpenManage Essentials Quick Setup Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your computer.

More information

BrowseEmAll Documentation

BrowseEmAll Documentation BrowseEmAll Documentation Release 9.0.0 Position Fixed UG Apr 11, 2018 Contents 1 Installation 3 1.1 System Requirements.......................................... 3 1.2 Download BrowseEmAll.........................................

More information

MultiBrowser Documentation

MultiBrowser Documentation MultiBrowser Documentation Release 10.0.0 Position Fixed UG Aug 06, 2018 Contents 1 Installation 3 1.1 System Requirements.......................................... 3 1.2 Download MultiBrowser.........................................

More information

Dell Lifecycle Controller Integration Version 1.1 for Microsoft System Center 2012 Virtual Machine Manager Installation Guide

Dell Lifecycle Controller Integration Version 1.1 for Microsoft System Center 2012 Virtual Machine Manager Installation Guide Dell Lifecycle Controller Integration Version 1.1 for Microsoft System Center 2012 Virtual Machine Manager Installation Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information

More information

Install and upgrade Qlik Sense. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved.

Install and upgrade Qlik Sense. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved. Install and upgrade Qlik Sense Qlik Sense 3.0 Copyright 1993-2016 QlikTech International AB. All rights reserved. Copyright 1993-2016 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik

More information

Getting Started with Panopto (Windows and OSX) for Sakai

Getting Started with Panopto (Windows and OSX) for Sakai Table of Contents Enabling Panopto in Your Sakai Course... 2 How to Record Lectures with Panopto... 4 For Windows:... 6 For OSX:... 11 Student Viewing Guide for Panopto Recordings via Canvas... 14 Downloading

More information

Silk Test 15.0 Silk4NET Web Edition. Installation Guide

Silk Test 15.0 Silk4NET Web Edition. Installation Guide Silk Test 15.0 Silk4NET Web Edition Installation Guide Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright Micro Focus 2014. All rights reserved. Portions Copyright 1992-2009 Borland

More information

How-to Uninstall DivX Browser Bar and Conduit Search

How-to Uninstall DivX Browser Bar and Conduit Search How-to Uninstall DivX Browser Bar and Conduit Search Contents How-to Uninstall DivX Browser Bar and Conduit Search... 1 Chrome... 1 On Startup Page (Home page)... 2 Appearance... 3 Omnibox (Address Bar)...

More information

How to Use the DICOM Uploader

How to Use the DICOM Uploader How to Use the DICOM Uploader Please Note: The DICOM Uploader requires Java Runtime Enforcement (JRE) Version 6 Update 10 or higher. To ensure you have the correct version of Java installed on your computer

More information

T E KLYNX CENTRAL I N S T A L L A T I O N G U I D E

T E KLYNX CENTRAL I N S T A L L A T I O N G U I D E TEKLYNX CENTRAL I N S T A L L A T I O N G U I D E Note TEKLYNX CENTRAL Installation Guide The information in this manual is not binding and may be modified without prior notice. Supply of the software

More information

Portal User Guide. Best practice tips and shortcuts Icon Legend Informational notes about functions. Important warnings about a function

Portal User Guide. Best practice tips and shortcuts Icon Legend Informational notes about functions. Important warnings about a function Portal User Guide Tips Best practice tips and shortcuts Icon Legend Notes Warning Informational notes about functions Important warnings about a function Your Portal https://www.clientaxcess.com Your Portal

More information

NTP Software File Auditor for Windows Edition

NTP Software File Auditor for Windows Edition NTP Software File Auditor for Windows Edition An NTP Software Installation Guide Abstract This guide provides a short introduction to installation and initial configuration of NTP Software File Auditor

More information

Covene Cohesion Server Installation Guide A Modular Platform for Pexip Infinity Management October 25, 2016 Version 3.3 Revision 1.

Covene Cohesion Server Installation Guide A Modular Platform for Pexip Infinity Management October 25, 2016 Version 3.3 Revision 1. Covene Cohesion Server Installation Guide A Modular Platform for Pexip Infinity Management October 25, 2016 Version 3.3 Revision 1.0 Table of Contents 1. Overview... 3 2. Upgrading an Existing Installation...

More information

inubit Suite 6 Quick Start

inubit Suite 6 Quick Start inubit Suite 6 Quick Start Copyright inubit AG Schöneberger Ufer 89-91 10785 Berlin Germany Phone: +49.30.72 61 12-0 Fax: +49.30.72 61 12-100 E-Mail: contact@inubit.com URL: www.inubit.com inubit AG 2011

More information

LIEBERT SiteScan TM. Quick Installation Guide

LIEBERT SiteScan TM. Quick Installation Guide LIEBERT SiteScan TM Quick Installation Guide LIEBERT SITESCAN TM Quick Installation Guide GETTING STARTED Use this guide to install your Liebert SiteScan Web software. System Requirements for the Liebert

More information

Function Point WORKBENCH Release 7.0k INSTALLATION GUIDE TABLE OF CONTENTS

Function Point WORKBENCH Release 7.0k INSTALLATION GUIDE TABLE OF CONTENTS Function Point WORKBENCH Release 7.0k GUIDE TABLE OF CONTENTS FUNCTION POINT WORKBENCH RELEASE 7.0K GUIDE... 1 LICENCE TYPES... 3 Standalone Licence Machine Dependent (Single User)... 3 Network Licence

More information

How to Configure an SSH Tunnel on PuTTY

How to Configure an SSH Tunnel on PuTTY How to Configure an SSH Tunnel on PuTTY YOU CAN USE A DYNAMIC TUNNEL TO ACCESS ALL REMOTE INFRASTRUCTURE. Most of you have probably used a tunnel with an SSH connection. What you probably weren t aware

More information

NICE Desktop Cloud Visualization. User Guide

NICE Desktop Cloud Visualization. User Guide NICE Desktop Cloud Visualization User Guide NICE Desktop Cloud Visualization: User Guide Copyright 2018 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade

More information

A Step-by-Step Patient Guide to Upload Medical Images to Cleveland Clinic

A Step-by-Step Patient Guide to Upload Medical Images to Cleveland Clinic A Step-by-Step Patient Guide to Upload Medical Images to Cleveland Clinic Neurological Institute 2017 Cleveland Clinic. All Rights Reserved. v.07.24.17 Table of Contents Get Started Step 1: Locate the

More information

Install firmware on Xbox One S

Install firmware on Xbox One S Install firmware on Xbox One S This guide will show you how to install official XBox One firmware on a blank HDD or SSD. Written By: KimJongIan ifixit CC BY-NC-SA www.ifixit.com Page 1 of 10 INTRODUCTION

More information

TTerm Connect Installation Guide

TTerm Connect Installation Guide Host Connectivity. Any Host, Any Device. TTerm Connect Installation Guide What is TTerm Connect? TTerm Connect is Turbosoft s web based terminal emulator. Built on common web technologies such as HTML5,

More information

Installation Guide. Mobile Print for Business version 1.0. July 2014 Issue 1.0

Installation Guide. Mobile Print for Business version 1.0. July 2014 Issue 1.0 Installation Guide Mobile Print for Business version 1.0 July 2014 Issue 1.0 Fuji Xerox Australia 101 Waterloo Road North Ryde NSW 2113 For technical queries please contact the Fuji Xerox Australia Customer

More information

Digital Pack Tutorial - For Mac

Digital Pack Tutorial - For Mac Digital Pack Tutorial - For Mac Contents Before You Start 1 Step 1 2 Step 2 3 Step 3 6 Step 4 8 Please feel free to contact us! BEFORE YOU START: Important! Do you have Adobe Reader or Adobe Acrobat Professional

More information

MAGLOCLEN MOCIC NESPIN RMIN ROCIC WSIN Newtown, PA Springfield, MO Franklin, MA Phoenix, AZ Nashville, TN Sacramento, CA

MAGLOCLEN MOCIC NESPIN RMIN ROCIC WSIN Newtown, PA Springfield, MO Franklin, MA Phoenix, AZ Nashville, TN Sacramento, CA Regional Information Sharing Systems RISS Technology Support Center RISSNET Logon Procedure May 4, 2012 Introduction The purpose of this document is to provide instructions to users of the Regional Information

More information

Mascot Insight Installation and setup guide

Mascot Insight Installation and setup guide Mascot Insight Installation and setup guide System requirements These are the system requirements for a Mascot Insight server. On the client side, Mascot Insight can be accessed from most web browsers.

More information

umapps Using umapps 6/14/2017 Brought to you by: umtech & The Center for Teaching & Learning

umapps Using umapps 6/14/2017 Brought to you by: umtech & The Center for Teaching & Learning umapps Using umapps Center for Teaching and Learning (CTL) 100 Administration Bldg., Memphis, TN 38152 Phone: 901.678.8888 Email: itstrainers@memphis.edu Center for Teaching and Learning Website 6/14/2017

More information

Symantec Ghost Solution Suite Web Console - Getting Started Guide

Symantec Ghost Solution Suite Web Console - Getting Started Guide Symantec Ghost Solution Suite Web Console - Getting Started Guide Symantec Ghost Solution Suite Web Console- Getting Started Guide Documentation version: 3.3 RU1 Legal Notice Copyright 2019 Symantec Corporation.

More information

VMware Plugin Installation for Windows 8.1 or newer

VMware Plugin Installation for Windows 8.1 or newer VMware Plugin Installation for Windows 8.1 or newer Table of Contents Access vlab and Install Plugin... 1 Firefox Settings... 5 Internet Explorer 11 Settings... 6 Installing Firefox ESR v52... 8 Access

More information

4. Web-based Switch Configuration

4. Web-based Switch Configuration 4. Web-based Switch Configuration Management Options Connecting using the Web User Interface Logging onto the Web Manager Smart Wizard Web User Interface (Web UI) Management Options The Switch provides

More information

MBNL UAD CITRIX FTP Solution

MBNL UAD CITRIX FTP Solution MBNL UAD CITRIX FTP Solution Introduction Serv-U Managed File Transfer (MFT) Server is a secure FTP server software that provides comprehensive security, automation, and centralized control for file transfers

More information

Web Applications Installation. version

Web Applications Installation. version version 2017.1 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates and functional content

More information

Remote Access Guide. https://remote.lghealth.org

Remote Access Guide. https://remote.lghealth.org Remote Access Guide https://remote.lghealth.org Created by: Joshua Steele Revision 1.0 7/14/2015 Table of Contents I. Remote Access using Internet Explorer... 2 II. Remote Access using Google Chrome...

More information

E-statement Settings Guide

E-statement Settings Guide E-statement Settings Guide Contents Windows PC... 3 Google Chrome... 3 Internet Explorer... 7 Mozilla Firefox... 10 Apple Macintosh... 14 Safari for Mac... 14 Apple ios (iphone/ipad)... 21 Safari for ios

More information

CRM Connector for Salesforce

CRM Connector for Salesforce CRM Connector for Salesforce Administrator Guide Version 1.1 October, 2016 Page 1 Table of contents INTRODUCTION AND GETTING STARTED OPERATING SYSTEM, HARDWARE AND SOFTWARE REQUIREMENTS Supported Browsers

More information

Metasploit. Installation Guide Release 4.4

Metasploit. Installation Guide Release 4.4 Metasploit Installation Guide Release 4.4 TABLE OF CONTENTS About this Guide Target Audience...1 Organization...1 Document Conventions...1 Support...2 Support for Metasploit Pro and Metasploit Express...2

More information

Oracle MOOC: SQL Fundamentals

Oracle MOOC: SQL Fundamentals Session 1 Getting Started Guide Homework assignments are given at the end of each lesson. Although they are not mandatory, it s suggested to complete the homework to gain a better understanding of the

More information

CONFIGURING BASIC MACOS MANAGEMENT: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE

CONFIGURING BASIC MACOS MANAGEMENT: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE GUIDE FEBRUARY 2019 PRINTED 26 FEBRUARY 2019 CONFIGURING BASIC MACOS MANAGEMENT: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE Table of Contents Overview Introduction Purpose Audience

More information

How to Launch an Online Course for the first time

How to Launch an Online Course for the first time How to Launch an Online Course for the first time This tutorial walks you through the steps to find, view and launch online courses that you have purchased using Council Connect. Important information

More information

WA2185 Platform Independent Mobile Development with jquery Mobile and Apache Cordova. Classroom Setup Guide. Web Age Solutions Inc.

WA2185 Platform Independent Mobile Development with jquery Mobile and Apache Cordova. Classroom Setup Guide. Web Age Solutions Inc. WA2185 Platform Independent Mobile Development with jquery Mobile and Apache Cordova Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware

More information

Using SQL Reporting Services with isupport

Using SQL Reporting Services with isupport isupport s SQL Reporting functionality is installed via the isupport SQL Reporting Setup Wizard; it includes several report models with isupport database fields, tables, and relationships. isupport includes

More information

Monarch Installation and Activation Guide. Version 15.x

Monarch Installation and Activation Guide. Version 15.x Monarch Installation and Activation Guide Version 15.x Datawatch Corporation makes no representation or warranties with respect to the contents of this manual or the associated software and especially

More information

Installation Guide. Apparo Fast Edit

Installation Guide. Apparo Fast Edit Installation Guide Apparo Fast Edit Single Instance Qlik Sense Version 3.1.1 [1] 1 Prior to Installation 3 1.1 Installation strategy... 4 2 Preparation 7 2.1 Creation of a database user for the Apparo

More information

Sophos Mobile Control Installation guide

Sophos Mobile Control Installation guide Sophos Mobile Control Installation guide Product version: 1.0 Document date: May 2011 Contents 1 Introduction... 3 2 The Sophos Mobile Control server... 4 3 Set up Sophos Mobile Control... 13 4 Apple Push

More information

Instructions For Configuring Your Browser Settings and Online Banking FAQ's

Instructions For Configuring Your Browser Settings and Online Banking FAQ's Instructions For Configuring Your Browser Settings and Online Banking FAQ's Instructions By Browser Type Google Chrome Firefox Internet Explorer 8 Internet Explorer 9 Safari Online Banking FAQ's Google

More information

OLI Engine in Aspen Hysys

OLI Engine in Aspen Hysys OLI Engine in Aspen Hysys This document applies to all versions of Aspen Hysys V7.3 to V8.8 The OLI Engine in Aspen Hysys includes OLI physical property databanks and OLI licensing and security components

More information

CCH Client Axcess Portal User Guide

CCH Client Axcess Portal User Guide CCH Client Axcess Portal User Guide Last Updated: October 2017 Client Portal Access or paste the below link into your web browser https://www.clientaxcess.com/#/login Please call our office at 212.245.5900

More information

Deposit Wizard TellerScan Installation Guide

Deposit Wizard TellerScan Installation Guide Guide Table of Contents System Requirements... 2 WebScan Overview... 2 Hardware Requirements... 2 Supported Browsers... 2 Driver Installation... 2 Step 1 - Determining Windows Edition & Bit Count... 3

More information

SmartPay Installation & Setup Guide. Version: HR21 Limited

SmartPay Installation & Setup Guide. Version: HR21 Limited Version: 1.0.1 HR21 Limited All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or information

More information

WA2583 React JavaScript Programming. Classroom Setup Guide. Web Age Solutions Inc.

WA2583 React JavaScript Programming. Classroom Setup Guide. Web Age Solutions Inc. WA2583 React JavaScript Programming Classroom Setup Guide Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum Software Requirements...3 Part 3 - Software

More information

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server.

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server. CODD SERVER ACCESS INSTRUCTIONS OVERVIEW Codd (codd.franklin.edu) is a server that is used for many Computer Science (COMP) courses. To access the Franklin University Linux Server called Codd, an SSH connection

More information

inubit 6.1 Quick Start

inubit 6.1 Quick Start inubit 6.1 Quick Start Copyright Bosch Software Innovations GmbH Schöneberger Ufer 89-91 10785 Berlin Germany Phone: +49.30.72 61 12-0 Fax: +49.30.72 61 12-100 E-Mail: info@bosch-si.com URL: www.bosch-si.com

More information

UPS WorldShip Install on a Workgroup Remote

UPS WorldShip Install on a Workgroup Remote PRE-INSTALLATION INSTRUCTIONS: Install UPS WorldShip on the Workgroup Admin. Temporarily disable any virus scan software that you may have installed. Request access to the network share drive created by

More information

PowerPoint. Instructions for playing On-Line Tutorials that are in Microsoft PowerPoint Slideshow (PPSX) format:

PowerPoint. Instructions for playing On-Line Tutorials that are in Microsoft PowerPoint Slideshow (PPSX) format: Detailed Instructions for viewing On-Line Tutorials: Q: How do I view and/or print an On-Line tutorial? A: On-Line Tutorials have been created in 2 different formats: Narrated Microsoft PowerPoint Slideshow

More information