Quick Python Setup
Motivation
Python has increased in popularity to near ubiquity in the past five years. While the Python community (correctly) professes simplicity as a major accomplishment of the language, I still get a lot of questions about how to get a python environment setup properly. There are some lengthy guides out there on this - this post will aim to summarize and explain the relevant components to getting started.
Note: skip to bottom if you want quick install commands
The Pieces
- Python is a language. Combination of syntax rules, semantics, keyword commands, an interpreter that can execute code abiding the rules.
- package is a self-contained, reusable piece of python code. Often a directory containing one or more python files (or more subdirectories). One typically packages python code in order to share it. There are some packages that come with the language itself (called “builtin”) and others that users can install optionally (called “3rd party” packages)
- environment is a combination of a Python installation and a collection of packages. Pip can only install python packages - not any precompiled binaries (conda can do that!)
- conda is a 3rd party package manager, and frankly I find it superior to pip in almost every way. It can install packages in a variety of languages, precompiled binaries (meaning numpy will install much faster).
- miniconda is an environment that contains bare-bones packages only, including the conda package manager.
- Anaconda is an environment that contains a large amount of packages, aimed at scientific computing (such as numpy, scipy, etc)
The Process
Recall that this guide is designed for novice-users, or as a reference for other users. I will assume that the user is able to use a desktop GUI (not headless).
Using Pip (not recommended)
Install python using the os-specific Python installation programs. I recommend
installing the latest version of Python 3.*, since most new packages do not include support for older versions of 2.7.
The program will install all the base packages you require, including pip. At which point you can open up a command line
(terminal on Mac or CMD on Win), and use commands like pip install x
to install a package named “x” (for more pip commands
see the docs).
Using Conda (recommended)
Install miniconda using the install program. Once installed, create your Python environment by doing the following:
conda create --name env1 python=3.7
(you can replace “env1” with the preferred name of the environment, probably something related to your current coding project. You can also replace “3.7” with whatever version of python you want to use)- This will do some thinking then print a list of packages that will be installed, accept this by typing
Y
- Your environment is created! You can activate this environment (on Mac/Linux by using
source activate env1
or on Win by usingactivate env1
). - Now that you are “in” the environment you created, you can install other packages into the environment using
conda install x
to install package “x” - You can also install other packages from a text file using
conda install --file requirements.txt
, where “requirements.txt” is the requirements file containing a list of package names (one on each line).
There are, of course, more complicated options available using conda, for those see the conda cheat sheet
TL;DR - Get Python Setup
The below steps give a quick, general-purpose environment setup.
- Install miniconda
conda create --name env1 python=3.7
source activate env1
conda install numpy scipy pandas
The “env1” directory will be installed in the user x directory (~/.anaconda
on Mac or C:\Users\x\.anaconda
on Win).
If you are using a python editor (like PyCharm) that wants to be “pointed” to the environment, then you will configure
it to look at the “env1” directory under the “.anaconda” folder.
Conda env shortcut
It is also possible to create a clickable shortcut to the conda environment, see the docs for more.