How to add the packages for printing decision trees

Slides:



Advertisements
Similar presentations
COP 3530 JDK Environment Variables. COP 3530 JDK Environment Variables Environment Variables Environment variables are a set of dynamic values that can.
Advertisements

Litmus Learning Primer tests
Neo.NET Entity Objects VisualStudio Tool Guide.
1 Installing Cantera 1.6 for Windows S. Browne and J.E. Shepherd Caltech January 2007.
1 Installing Cantera 1.7 for Windows S. Browne and J. E. Shepherd Caltech Revised March 24, 2007.
1 Configuring Web services (Week 15, Monday 4/17/2006) © Abdou Illia, Spring 2006.
CS115 HOW TO INSTALL THE JAVA DEVELOPMENT KIT (JDK)
Go to the link ( as shown, then choose downloads.
Math 5364/66 Notes Installing Python Modules Jesse Crawford Department of Mathematics Tarleton State 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.
Installation Ubuntu for Libraries. Step 1: Download Head on to Pick Ubuntu LTS; just click the big orange.
SERVLETS.
1 ENG236: ENG236: C++ Programming Environment (2) Rocky K. C. Chang THE HONG KONG POLYTECHNIC UNIVERSITY.
One to One instructions Installing and configuring samba on Ubuntu Linux to enable Linux to share files and documents with Windows XP.
®® Microsoft Windows 7 for Power Users Tutorial 8 Troubleshooting Windows 7.
Set up the Environment for leJOS NXJ. Required Software Software –JDK 1.6 –leJOS NXJ –USB driver for NXT Mindstorm nxt USB driver Libusb MMN Lab.
For Version 6.0 and later Lattice3D Reporter Tutorial For Version 6.0 and later LATTICE TECHNOLOGY, INC.
ATG Environment Setup In this session you will learn – Setting Up ATG environment – Creating new ATG application – Configuring Data Source – Configuring.
Teach Yourself Windows 95 Module 5: Customizing and Maintaining Your Computer.
FTP Server and FTP Commands By Nanda Ganesan, Ph.D. © Nanda Ganesan, All Rights Reserved.
How to Tag a Corpus Using Stanford Tagger. Accuracy All tokens: 97.32% Unknown words: 90.79%
 If we set java settings permanently they are available from all command prompts even after system restart.
How to create and install packages in R Presenter: Roman Jandarov
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.
Java On the ENB 116 Computers The JDK is now available on the ENB 116 computers. You can use a classroom computer rather than your own laptop or CIRCE.
Windows Installation Tutorial NASA ARSET For Python help, contact: Justin Roberts-Pierel
How to Add a Printer & Printer Retention Training.
How to Fix Missing WMVCore.dll Error in Windows 10
Accessing the Academic Library’s online databases from off-campus When you click on the link to a database that you would like to search, you will be prompted.
CombScan Quick Help Guide This guide will show you the basics essentials to get you started with CombScan Detailed information on setup and operation.
HOW TO FIX MSVCR100. DLL IS MISSING ERROR? missing-error.
| © 2007 LenovoLenovo Confidential Use WinDBG Tool to Analyze BSOD —— Lenovo Service Support Training.
How to stop Port Handler service of Epson Printer.
How To Silent-Install The AVG Antivirus 2017 Using The DOS Command.
How to fix Windows 10 apps crashing or not opening errors.
Delete an Operating System From Single-Boot HP Computer.
MET4750 Techniques for Earth System Modeling
How to change the LOGO on PecStarWeb V3.6
How to Run Xamarin Studio in Class
SMALL HOME NETWORK Local Network Area.
Unity Application Generator
How to fix “OMCDetect” error while using OverDrive for Windows 8 and 7
DATA MINING Python.
3.1 Profibus Card Driver Installation
/pages/Fix-PC-Error/ u/0/b/ channel/UCb-PIbnNxVe6S2xG2lNcq5w
Deploying and Configuring SSIS Packages
How to Fix the Automatic Repair Loop in Windows 8.1
Fix Bitdefender Error Code 1002 call Support Number
Tips to Manually Uninstall Norton Antivirus 2012.
to Fix Microsoft office 365 not Working on Windows 10
How to Import an Excel File
Setting the Permissions
Automating reports with Python
SimpleITK Setup and Schedule
EMSE 6574 – Programming for Analytics: Python 101 – Python Enviornments Joel Klein.
ECE 3567 Microcontroller Lab
CS115 HOW TO INSTALL THE JAVA DEVELOPMENT KIT (JDK)
Option One Install Python via installing Anaconda:
Windows Installation Tutorial
Python/TensorFlow Installation
DOS Commands Damian Gordon.
SimpleITK Setup and Schedule
University of Washington CSE 416 Spring 2019 Hongjun Wu
Unity Application Generator
Review of Previous Lesson
Installations for Course
Installations for Course
ECE 3567 Microcontrollers Lab
Presentation transcript:

How to add the packages for printing decision trees

Step 1: Install seaborn If you get an error message like this “No module named 'seaborn' ”, you can use the command “conda install seaborn” to install this package. Step1. under Program->Anaconda->Anaconda Prompt, open Anaconda Prompt, type in the following command: conda install seaborn Step2. After the window outputs "Proceed ([y]/n)?", press "y" Important!: Each time after you install a package, please restart Jupyter Notebook, so that the software can pick up the new packages.

Step 2: Install pydotplus If you get an error message like this “No module named 'pydot‘”, you can use the pip command to install the pydotplus package Step1: replace all the occurrences of ‘pydot’ with ‘pydotplus’ in your notebook. There are two places need to be replaced. Step2: Open Anaconda prompt, get into the location of pip.exe by typing: “cd C:\Program Files\Anaconda3\Scripts”. Step 3: type “pip install pydotplus” Note: replace the highlighted part with the actual path of Anaconda3 on your computer.

Step 3: Install graphviz If you get an error message like: “GraphViz's executables not found” “'list' object has no attribute 'create_png'” “print_tree has no value” You have to install the graphviz package follow these steps. 1) Open Anaconda prompt, type “conda install graphviz” 2) Get into the location of pip.exe by typing: “cd C:\Program Files\Anaconda3\Scripts” at Anaconda prompt, type “pip install graphviz” 3) add the path of graphviz to environment variable. (See more details for this step in the following slides) Note: replace the highlighted part with the actual path of Anaconda3 on your computer.

3) add the path of graphviz to environment variable The following slides demonstrate the detailed screenshots for this step. Reference: http://stackoverflow.com/questions/18438997/why-is-pydot- unable-to-find-graphvizs-executables-in-windows-8

1. Open the setting for “Environment Variable”

Right click “computer”, select “Properties”

Choose “Advanced system setting”

Click “Environment Variable”

Click “New” to add a new environment variable

2. Add a new Environment Variable

Add a New User Variable. Variable Name: Path Variable Value: C:\Program Files\Anaconda3\Library\bin\graphviz; C:\Program Files\Anaconda3\pkgs\graphviz-2.38.0-2\Library\bin\graphviz Note: This is the location of the file “gvedit.exe” when I log into the virtual lab. You may search for “gvedit.exe” to make sure this is the path of this file on your computer.