Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Python Data Mining Quick Start Guide

You're reading from  Python Data Mining Quick Start Guide

Product type Book
Published in Apr 2019
Publisher Packt
ISBN-13 9781789800265
Pages 188 pages
Edition 1st Edition
Languages
Concepts
Author (1):
Nathan Greeneltch Nathan Greeneltch
Profile icon Nathan Greeneltch

Table of Contents (9) Chapters

Preface Data Mining and Getting Started with Python Tools Basic Terminology and Our End-to-End Example Collecting, Exploring, and Visualizing Data Cleaning and Readying Data for Analysis Grouping and Clustering Data Prediction with Regression and Classification Advanced Topics - Building a Data Processing Pipeline and Deploying It Other Books You May Enjoy

Installing the Anaconda distribution and Conda package manager

These tools from Anaconda are available on both Windows and Linux systems. See the following install instructions.

Installing on Linux

To install the distribution, follow these steps given as follows:

  1. First, download the latest installer build from https://www.anaconda.com/download/#linux.
  2. Then, in the Linux Terminal, pass this bash command:
$ bash Anaconda-latest-Linux-x86_64.sh
  1. Follow the prompts in the terminal and it will begin installing. Once done, you will be asked if you want to allow Conda to be auto-initialized with a .bashrc entry. I recommend choosing N and activating it manually when needed, just in case you decide to have multiple versions of Conda on your system. In this case, you can launch the Conda prompt by using the following command:
$ source /{anaconda3_dir}/bin/activate

This is will source the Conda activate shell script and call it to activate the base environment, which is the default Anaconda Python bundle. Adding new environments will be discussed in the following section on how to install specific libraries. At this point, passing the Python command will open an interactive shell where you can execute Python code line-by-line, as shown in the following code snippet:

(base) $ Python
Python 3.7.0 (default, Jun 28 2018, 13:15:42)
[GCC 7.2.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>> numpy.random.random(10)
array([0.48489815, 0.80944492, 0.89740441, 0.93031125, 0.71774534,
0.63817451, 0.93231809, 0.75820457, 0.17550135, 0.62126858])

Alternatively, you can execute the code in a stored Python script by using the following command:

(base) $ Python script.py

Installing on Windows

To install on Windows, follow the steps given as follows:

  1. First, download the executable from https://conda.io/docs/user-guide/install/windows.html
  2. Then, launch the Anaconda prompt that can be found in a program search from the Windows Start menu

Anaconda prompt is a Windows command prompt with all the environment variables set to point to Anaconda. That's it; you are ready to use your base Python environment.

Installing on macOS

To install on macOS, follow the steps given as follows:

  1. First, download the graphical installer from the Anaconda distribution site https://www.anaconda.com/distribution/
  2. Launch the package and follow the on-screen prompts, which should set up everything you need automatically
You have been reading a chapter from
Python Data Mining Quick Start Guide
Published in: Apr 2019 Publisher: Packt ISBN-13: 9781789800265
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}