University of Washington CSE 416 Spring 2019 Hongjun Wu

Slides:



Advertisements
Similar presentations
Python Lab Proteomics Informatics, Spring 2014 Week 1 28 th Jan, 2014 Himanshu Grover
Advertisements

PowerPoint 2002 Linking Video in Presentation and Delivering Presentation on the Road.
Math 5364/66 Notes Installing Python Modules Jesse Crawford Department of Mathematics Tarleton State University.
Introduction to Android Studio
Julie McEnery1 Installing the ScienceTools The release manager automatically compiles each release of the Science Tools, it creates a set of wrapper scripts.
Tutorial 11 Installing, Updating, and Configuring Software
Introduction to Android. Android as a system, is a java based operating system that runs on the Linux kernel. The system is very lightweight and full.
CSC 215 : Procedural Programming with C C Compilers.
Slackware 9.1 Installation First prompt in the installation process.
Mozilla Firefox By: Hassan Aslam Angela Brown Allen Lewis Brain Molczyk Megan Propts.
MIPS Project -- Simics Yang Diyi Outline Introduction to Simics Simics Installation – Linux – Windows Guide to Labs – General idea Score Policy.
Tool Install How to download & install Java 6 & Eclipse updated version based on Dr. G. L. Ray’s slides.
How to Download and Install the Naper eReader and eBook Naper Publishing Group.
Debugging Ensemble Productions CAMTA Meeting 11 th November 2010 John Murray.
Python Interpreter and Pycharm Community Edition
DATA MINING Pandas. Python Data Analysis Library A library for data analysis of (mostly) tabular data Gives capabilities similar to Excel and SQL but.
Windows Installation Tutorial NASA ARSET For Python help, contact: Justin Roberts-Pierel
1. Starting 1 Let’s Learn Saenthong School, January – February 2016 Teacher: Aj. Andrew Davison, CoE, PSU Hat Yai Campus
Install CB 1.8 on Ubuntu. Steps Followed Install Ubuntu (Ubuntu LTS) on Virtual machine – (VMware Workstation) (
Installing CUDA, PyCUDA on Ubuntu
DHIS2 Live on Windows laptops/desktops (NOT for production servers!!)
Windows Installation Tutorial NASA ARSET For Python help, contact: Justin Roberts-Pierel
Upgrade on Windows 7. DownloadSoftware Download Software from link provided in Webliography: e/
How to use Drupal Awdhesh Kumar (Team Leader) Presentation Topic.
IBM Worklight environment setup 1. Eclipse IDE Multi-purpose integrated development environment (IDE) Open source Supported for Windows, Mac OS X, Linux.
Day 1 Session 2. Setup & Installation
How to download and install software from Microsoft Imagine
Download & Run the Installer
Chapter 9 Managing Software
Step 1 - Installing TStatSpec Download the TStatSpec software from customer.honeywell.com.  The files will need to be extracted in a new folder.  
Development Environment
SEEM4570 Tutorial 1:Software Installation
Cryptography Sage Interlude 1.
Introduction to .NET Core
IST256 Python Install Fest!!!!
Create Virtual Directory Windows 8 - IIS 8.5
1. Open any Office 2016 app, such as Word, and create a new document.
How to add the packages for printing decision trees
DATA MINING Python.
INSTALLING PYTHON 3 COSC 1306 Fall 2017.
Contact us to fix AVG Error Code 0xe001f921
Introduction to Computational Thinking
How to Download, Install, and Update AVG Antivirus?
Prepared by Kimberly Sayre and Jinbo Bi
Kaspersky Antivirus Customer Service. Steps to Install Kaspersky Antivirus  Download the installer from the Kaspersky Lab website or use the link in.
How to Install AVG Antivirus?
How to Update Microsoft Office on Mac
LING 388: Computers and Language
slides borrowed and adapted from Alex Mariakis and CSE 390a
Chapter 3 Objectives Understand How to Upgrade to Windows 7 from a Previous Version of Windows. Understand How to Migrate from Windows XP to Windows 7.
Automating reports with Python
Lesson #7 MCTS Cert Guide Microsoft Windows 7, Configuring Chapter 7 Configuring Devices and Updates.
Install Ruby If you are running on Mac OS X, Ruby is preinstalled.
SimpleITK Setup and Schedule
SimpleITK Setup and Schedule
BSc in Digital Media, PSUIC
EMSE 6574 – Programming for Analytics: Python 101 – Python Enviornments Joel Klein.
CS791v Homework and Submission
Option One Install Python via installing Anaconda:
Cygwin.
Windows Installation Tutorial
Python/TensorFlow Installation
Carthage ios 8 onwards Dependency manager that streamlines the process of integrating the libraries into the project.
SimpleITK Setup and Schedule
Python Environments The following is specific for conda installation, but with small variations applies to everything
Review of Previous Lesson
DATA MINING Python.
Installations for Course
Development Environment Setup
Installations for Course
Presentation transcript:

University of Washington CSE 416 Spring 2019 Hongjun Wu How to Setup Anaconda University of Washington CSE 416 Spring 2019 Hongjun Wu © 2019 Hongjun Wu

Setup 1. For Python version, we are using Python 3.6 (Not 3.7) I will use Windows 10 to demonstrate. macOS and Linux should be similar. Navigate to the archive of Anaconda and download Anaconda 3 5.1.0. https://repo.anaconda.com/archive/Anaconda3-5.1.0-Windows-x86_64.exe Why not Python 3.7? Python 3.7 is too new. Some packages we are using might not be compatible with 3.7. Python 3.6 is the “known stable” version of Python 3 for quite a long time. However, if you have 3.7 installed you can create a virtual environment using 3.6. 2. Install Anaconda 3 5.1.0 Remember to check the “add to PATH” option. 3. Test everything works properly. © 2019 Hongjun Wu

Optional: Create virtual env Steps: 1. Open anaconda prompt 2. Run [conda –V] and check you do have Python 3.7 installed. 3. Run [conda update conda] 4. Run [conda create –n cse416 python=3.6 anaconda] Hit y. This will take a while. Note: “cse416” is an arbitrarily picked environment name. You can name it whatever you want(i.e. myenv). 5. Run [conda activate cse416] Source: https://uoa-eresearch.github.io/eresearch- cookbook/recipe/2014/11/20/conda/ © 2019 Hongjun Wu