Windows Installation Tutorial

Slides:



Advertisements
Similar presentations
1 Installing Cantera 1.6 for Windows S. Browne and J.E. Shepherd Caltech January 2007.
Advertisements

BlackBoard Content Collection Retrieval Annual Assessment Updates
This presentation contains the following: -the availability and need menu options -the add option Mark Smith.
Java Programming Working with TextPad. Using TextPad to Work with Java This text editor is designed for working with Java You can download a trial version.
CS115 HOW TO INSTALL THE JAVA DEVELOPMENT KIT (JDK)
Go to the link ( as shown, then choose downloads.
Installing JDK Vijayan Sugumaran Department of DIS Oakland University.
How to install the Zelle graphics package
Update the PATH variable Trying to run the command: “javac Ex1.java” you’ve may encountered the error: “javac is not recognized as internal or external.
How do I create a Web Dilemma in PowerPoint? Start Tutorial Use Black Boxes for Navigation.
© 2010 IBM Corporation IBM Experience Modeler - Theme Editor Installing Python Image Library Presenter’s Name - Presenter’s Title DD Month Year.
Test Automation For Web-Based Applications Portnov Computer School Presenter: Ellie Skobel.
Installing the Core FTP Client Go to Click on “Download Core FTP now!” Under the Core FTP LE 2.2: free version heading Select.
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,
Installing the SAFARIODBC.EXE For use with Excel May 3, 2002.
November 2014Prepared by the Computer Lab Montgomery County-Norristown Public Library.
1 Mobile Computing Set Up Copyright 2015 by Janson Industries.
1 IMPORTANT NOTE  IMPORTANT NOTE not  As of this writing the default project you will download, import and use in this class is not enabled for Tomcat.
 We are going to learn about programming in general…How to think logically and problem solve. The programming language we will use is Python. This is.
How to Take Full Control of the ArrayTools and R Folder You need to have Full Control of the ArrayTools and R installation folders to run BRB-ArrayTools.
DEVS M&S Tutorial with eclipse IDE Chungman Seo
SAFARI ODBC INSTALLATION Go to the TRECA home WEB page.
 If we set java settings permanently they are available from all command prompts even after system restart.
Installing JDK Vijayan Sugumaran Department of DIS Oakland University.
Java Programming, Second Edition Appendix A Working with Java SDK 1.4.
WinCvs. WinCVS WinCvs is a window based version control system. Use WinCvs when  You want to save every version of your file you have ever created. CVS.
Python Interpreter and Pycharm Community Edition
Windows Installation Tutorial NASA ARSET For Python help, contact: Justin Roberts-Pierel
1 Installing Java on Your PC. Installing Java To develop Java programs on your PC: Install JDK (Java Development Kit) Add the directory where JDK was.
Gensuite ® Step-by-Step Guide for the setup of Gensuite Compliance Calendar and Training Calendar integration with Microsoft Outlook Some computers experience.
Web Scraping with Python and Selenium. What is Web Scraping?  Software technique for extracting info from websites Get information programmatically that.
Windows Installation Tutorial NASA ARSET For Python help, contact: Justin Roberts-Pierel
How to install JavaCV in Eclipse. Make sure to download and install all these before you proceed Eclipse for Java EE developers (current is Juno)
Text Basics It's important to know how to perform basic tasks with text when working in a word processing application. In this lesson, you'll learn the.
How to import libraries into Visual Studio OpenCV.
How to download and install software from Microsoft Imagine
beas group AG Beas sql guide Martin Heigl CTO
Power Point Tutorial Power Point is a powerful presentation program but a relatively easy system to use. The menu of functions is much the same as in MS.
TransForm Tutorials.
Development Environment
Using “So what is the Truth” Template
Sinclair Alerts Widget
MET4750 Techniques for Earth System Modeling
ACTIVATE SHORTCUT KEYS ON AN HP LAPTOP’S KEYBOARD.
COMP 170 – Introduction to Object Oriented Programming
Wireless Network Access on Mac OSX
How to add the packages for printing decision trees
SUBMITTING A PAYMENT REQUEST FORM
A Complete Guide to Summer 2016 Registration Once you’re logged into WyoRecords, click on Registration *Slides will forward after 6 seconds or by mouse.
Bomgar Remote support software
NetAcumen ActiveX Download Instructions
How to install the Enterprise Agent using Active Directory
Setting up Eclipse Locally
Using the Multiple Choice Template
Task 1 Computer Programming LEVEL 6 PROGRAMMING:
Quality Checking your Personnel Folders
Using “So what is the Truth” Template
CGS 3175: Internet Applications Fall 2009
CS115 HOW TO INSTALL THE JAVA DEVELOPMENT KIT (JDK)
Steps in accessing Past Examination Papers
Macrosystems EDDIE: Getting Started + Troubleshooting Tips
How to PostPower Point Presentations
Scripts In Matlab.
CGHS HERITAGE QUEST PRESENTATION
HOW TO CREATE BIBLIOGRAPHY:
Review of Previous Lesson
Macrosystems EDDIE: Getting Started + Troubleshooting Tips
Installations for Course
Executive Reports, Instructions and Documentation
Installations for Course
Presentation transcript:

Windows Installation Tutorial Institute of Southern Punjab Department of Computer Science & IT

Installing Python 3.4.3 https://www.python.org/downloads/

Go to: https://www.python.org/downloads/ Click the “Download Python 3.4.3 Button”

Open the “.msi” downloaded file Click the “Run” Button Then follow the directions to install Python 3.4.3

Once Python 3.4.3 is installed… Open the start menu: **RIGHT** click on the “Computer” Button Click the “Advanced System Settings” Button Click “Properties”

Setting your environment path Scroll to the very end of this line of text… Click “Ok” to all open properties windows …and add the text: “;C:\Python34” to the end Click on the variable “Path” so that it is highlighted, and then click “Edit..” Go to the “System Variables” window, and scroll down until you find the “Path” variable Click the “Environment Variables” Button

Test Python 3.4.3 installation Open the start menu: Open Command Prompt Type “python”… …and hit Enter If your command prompt now says: “Python 3.4.3”, you’ve completed the tutorial correctly! If not, you may have missed something… Search here for “Command prompt”

Installing Python 3 Packages Python Package Index: Pip command https://pypi.python.org/pypi/

Open the Command Prompt Many python packages are available for installation through the simple “pip” command. Try the following command: C:/Python34/Scripts/pip install “name-of-package” (i.e. NeuroPy) And hit Enter.

Installing Python 3 Packages Windows Binary Files (.whl): Pip command http://www.lfd.uci.edu/~gohlke/pythonlibs/

Go to http://www.lfd.uci.edu/~gohlke/pythonlibs/ Many python packages are not available for installation through the simple “pip” command. For example. Try to install “netCDF4” the same way as NeuroPy in the previous slide. If you get an error like this while installing a python package. Go to the link at the top of this page.

Downloading a “.whl” file Scroll down until you find the package you’re looking for Once you find your desired package… Click on the link corresponding to your version of python and your type of computer. For example, this link is correct for someone with Python 3.4 installed (cp34), and if your computer is 32-bit (win32)

Installing the “.whl” file Navigate to your “Downloads” folder Open Command Prompt Install the “.whl” netCDF4 package with this command To view all of your currently installed python modules, type “python” and hit enter Then type “help(‘modules’)” and hit enter This should install the package successfully. If you get an error, it’s possible that you downloaded a file with the incorrect version of python, or the incorrect choice of 32 vs 64 bit computer A list of all of your currently installed modules will appear!