Installations for Course

Slides:



Advertisements
Similar presentations
Instructions for Creating a Stop Motion Animation From Start to Finish.
Advertisements

Creating a Program In today’s lesson we will look at: what programming is different types of programs how we create a program installing an IDE to get.
CS115 HOW TO INSTALL THE JAVA DEVELOPMENT KIT (JDK)
How to install the Zelle graphics package
© 2010 IBM Corporation IBM Experience Modeler - Theme Editor Installing Python Image Library Presenter’s Name - Presenter’s Title DD Month Year.
Python Mini-Course University of Oklahoma Department of Psychology Day 1 – Lesson 1 Getting Started 4/5/09 Python Mini-Course: Day 1 - Lesson 1 1.
The Basics  Operating systems (OS) can help computer users do many things, like managing and manipulating files and folders.  Operating systems also.
Open Source Server Side Scripting ECA 236 Open Source Server Side Scripting Installation and Testing.
CS 450: COMPUTER GRAPHICS INSTALLING GLUT AND GLEW SPRING 2015 DR. MICHAEL J. REALE.
Module 6: Configuring User Environments Using Group Policy.
You Need an Interpreter!. Closing the GAP Thus far, we’ve been struggling to speak to computers in “their” language, maybe its time we spoke to them in.
Installing and Developing Programs in Python. Installing Python is pre-installed on most Unix systems, including Linux and MAC OS X The pre-installed.
Python Interpreter and Pycharm Community Edition
Windows Installation Tutorial NASA ARSET For Python help, contact: Justin Roberts-Pierel
1 Getting Started with C++ Part 1 Windows. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Microsoft.
Open project in Microsoft Visual Studio → build program in “Release” mode.
Module 6: Configuring User Environments Using Group Policies.
Practical Kinetics Exercise 0: Getting Started Objectives: 1.Install Python and IPython Notebook 2.print “Hello World!”
Exploring Spyder: An IDE for scientific computing
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
Lindsey Velez, Director of Instructional Technology Single Sign-On One Click.
1 Microsoft Access Security Warnings Note: This presentation was created with "Access 2002". You might have slightly different warnings with other versions.
 CSC 215 : Procedural Programming with C C Compilers.
Upgrade on Windows 7. DownloadSoftware Download Software from link provided in Webliography: e/
IBM Worklight environment setup 1. Eclipse IDE Multi-purpose integrated development environment (IDE) Open source Supported for Windows, Mac OS X, Linux.
How to Get Started With Python
Installing RMS 3.0 Contractor Mode
Deep Neural Networks: A Hands on Challenge
CSC 215 : Procedural Programming with C
Development Environment
MET4750 Techniques for Earth System Modeling
PerSEC Lab SRA 111 – Dr. Glantz.
Install external command line softwares
Visual Basic Code & No.: CS 218
IST256 Python Install Fest!!!!
Mark V. Janikas Marjean Pobuda
3.01 Apply Controls Associated With Visual Studio Form
How to add the packages for printing decision trees
DATA MINING Python.
INSTALLING PYTHON 3 COSC 1306 Fall 2017.
Visual programming Chapter 1: Introduction
Technical expert studying and writing helpful articles on antivirus and other security products.
Week 1 Gates Introduction to Information Technology cosc 010 Week 1 Gates
Prepared by Kimberly Sayre and Jinbo Bi
Instructor: Prasun Dewan (FB 150,
Installing OpenRefine
Introduction to EV3Dev: Setup with Python
Install Ruby If you are running on Mac OS X, Ruby is preinstalled.
University of Texas Rio Grande Valley Systems Administration CSCI 6175
UNITY TEAM PROJECT TOPICS: [1]. Unity Collaborate
Using K2 applications How can users interact with K2 applications?
Brief Intro to Python for Statistics
EMSE 6574 – Programming for Analytics: Python 101 – Python Enviornments Joel Klein.
Segurança e auditoria de sistemas
CS115 HOW TO INSTALL THE JAVA DEVELOPMENT KIT (JDK)
Visual Studio Code for PowerShell
Option One Install Python via installing Anaconda:
CS 1111 Introduction to Programming Spring 2019
Tutorial 1: Python, Numpy, and AWS Tutorial
Install MySQL Community Server and MySQL Workbench
Windows Installation Tutorial
Creating a Windows Application Project in Visual Studio
Scripts In Matlab.
Input and Output Python3 Beginner #3.
Carthage ios 8 onwards Dependency manager that streamlines the process of integrating the libraries into the project.
Review of Previous Lesson
Starter Which of these inventions is: Used most by people in Britain
Visual Studio Code Walkthrough
Installations for Course
Presentation transcript:

Installations for Course We’re going to be learning a lot in the course . Installing now will save you time. We have technical instructions here – there are going to be explanations about the IDE’s and about what “modules” and “packages” are in the course. We’re going to be using Visual Studio’s VSCode IDE for the first lessons and then teach PyCharm’s IDE and you can do the exercises in whichever you prefer.

Downloading Python https://www.python.org/downloads/ is the link to the download you need. Make sure that you download a Python 3 version (3.x.x – 3.6.0 for example). Make sure that the version is meant for your operating system (Windows, Mac OS X, Linux). Make sure the “Add to Path” option is selected when installing..

Installing VSCode Section in Video which explains how to download VSCode Editor and extend it into an IDE (~7 minutes long): https://www.youtube.com/watch?v=f79MRyMsjrQ&t=343s Download link for VSCode: https://code.visualstudio.com/

PyCharm Installation Please install the popular PyCharm IDE. We will be learning to use it after the first lessons: https://www.jetbrains.com/toolbox/app/. Download this toolbox app (click “Download” in the top-right corner). Run the file to install the App. From the Toolbox App – choose to install “PyCharm Edu” It installs quietly (PyCharm can also be used installed and works well with the Anaconda Python and Packages distribution, though we’re not using Anaconda in our course)

Chose a method Please install the packages mentioned in the last through command line or through PyCharm IDE or through VSCode IDE Instructions are on next two slides You can try all methods if you have time – it might help you decide on an IDE later on.

Installing Packages through IDE We can install a package using one of: Installing package in PyCharm: https://www.jetbrains.com/help/pycharm/installing-uninstalling-and-upgrading- packages.html Installing packages in VSCode: https://code.visualstudio.com/docs/python/python-tutorial#_install-and-use- packages

Using cmd to Install Python Packages You can do package installation from your Python IDE – but it is good to know how to use the command line (cmd) When you open a command line window – type “python” if the command is not recognized – add the folder where your python.exe is to the “PATH” Environment Variable. This tells the computer where to search for an exe file when you type in “python”, for example. You can set the environment variable in (Windows) File Explorer: Computer (right click)->Properties->Advanced System Settings->Advanced->Environment Variables->User Variables->Select PATH and Edit. Type ; after the last path there and add C:\Users\a\AppData\Local\Programs\Python\Python37-32 (for example). You can find your python.exe by right- click on the program’s icon in the start menu->Open file location. You need to close the cmd window where “python” wasn’t recognized and open a new window. If “pip” is not recognized as a command when typing “pip install requests” add the same path as for “python” to the PATH environment variable, but with “\Scripts” (C:\Users\a\AppData\Local\Programs\Python\Python37- 32\Scripts for example)

Online Python Notebooks A Python notebook is built to be interactive, to display data/graphs nicely, and is divided in to code cells and text cells. Jupyter is a package for running/editing Python notebooks locally. We’ll be installing it. There is also the option to run/edit any Python notebook through the Google Colab online application. There will be instructions how to open someone’s GitHub Python notebook through Google Colab in one of the lessons.

Packages to Install for the Course numpy scipy statsmodels pandas matplotlib seaborn Flask requests beautifulsoup4 openpyxl python-docx PyPDF2 jupyter pytest Nose2 buildozer plyer

Installing Kivy https://kivy.org/doc/stable/guide/basic.html - go to this link, from here you have links to instructions of installation on Windows, Unix or Mac (OS X) Note: you must uninstall Kivy and dependencies if you have installed it. For Windows, follow the instructions in the “Installing the kivy stable release” section. For Linux, follow the instructions in the “Using Precompiled Wheels“ section. For Mac, follow the instructions in the “Using Wheels“ section.