Conda and installing Python and R environments#
Updates in progress
The resources are actively being updated! Some parts are still out of date, and is the content from last year. In the meantime, please watch out for references to 2021 (“OHW21”) or links that don’t work.
Overview#
What is Conda?#
Conda is an open source package
and environment
management system for any programming languages, but very popular among python community,
The Hub is pre-configured with a customized “environment” of Python and R packages designed to run all the tutorial notebooks, and supporting a broad range of oceanographic applications. This environment is created and managed using the open-source Conda package and environment management system for installing multiple versions of software packages together with their dependencies, and convenient switching between environments. Conda runs on Windows, macOS, and Linux: “Conda quickly installs, runs, and updates packages and their dependencies. Conda easily creates, saves, loads, and switches between environments on your local computer. It was created for Python programs but it can package and distribute software for any language.”
Conda may be used on your computer as well as the Hub …
https://github.com/oceanhackweek/ohw20-tutorials/blob/master/environment.yml
For Python, the advantage of conda compared to pip
is that it has a built in environment management system as well as the management of binaries, and non-Python dependencies.
You do not need administrative or root permissions to install conda if you select a user-writable installation location.
In the previous lesson we showed you a cloud-based environment for our work during the hackweek. What happens after the event when you want to go home and work with all the libraries we showed you? You will likely also want to have a functioning version of Python on your local laptop if that is not already in place. So this lesson takes you through our recommended procedure for doing that. We suggest you get this set up in advance so that we can help you troubleshoot when you arrive.
Python Software#
Python software is distributed as a series of libraries that are called within your code to perform certain tasks. There are many different collections, or distributions of Python software. Generally you install a specific distribution of Python and then add additional libraries as you need them. There are also several different versions of Python. The two main versions right now are 2.7 and 3.7, although Python 2.7 will not be supported past 2020. Some libraries only work with specific versions of Python.
So even though Python is one of the most adaptable, easy-to-use software systems, you can see there are still complexities to work out and potential challenges when delivering content to a large group. Therefore we have a number of different ways that we are trying to simplify this process to maximize your learning during the hackweek.
We also provide instructions for using Anaconda, which is our recommended Python distribution, for installing and working with Python on your local computer. We can assist in setting up “conda” environments that will simplify the gathering of Python libraries and version specific to the tutorial you are working on.
Installing Conda Miniconda#
For local development
Conda is already installed on our JupyterHub, so these instructions are for if you wish to get started with developing locally.
We may not have the ability to support everyone’s individual system, so we have the JupyterLab setup so that everyone can work on the same pre-configured platform.
If you don’t have conda (either with Miniconda or the full Anaconda Distribution) already installed we recommend installing Miniconda for latest Python 3.
https://conda.io/projects/conda/en/latest/user-guide/install/index.html
Windows#
Download the proper installer for your Windows platform (64 bits). When installing, you will be asked if you wish to make the Anaconda Python your default Python for Windows. If you do not have any other installation that is a good option. If you want to keep multiple versions of Python on your machine (e.g. ESRI-supplied python, or 64 bit versions of Anaconda), then don’t select the option to modify your path or modify your Windows registry settings.
Linux and OSX#
You may follow manual steps from here similar to the instructions on Windows (see above). Alternatively, you can execute these commands on a terminal shell (in this case, the bash shell):
# For MacOSX
url=https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
# For Linux
url=https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
wget $url -O miniconda.sh
bash miniconda.sh -b -p $HOME/miniconda
export PATH="$HOME/miniconda/bin:$PATH"
conda update conda --yes
Installing Python#
We will be using Python 3.8 or 3.9 during the week (either will work). Since Anaconda (on Linux) expects you to work in the “bash” shell, if this is not already your default shell, you need to set it to be so (use the “chsh -s /bin/bash” command to change your default shell to bash) or just run an instance of bash from the command line before issuing “Conda” commands (/bin/bash or where it is located on your system).
If you are already familiar with Python 2.7, you can take a look at the syntax differences here, but the main point to remember is to put the print statements in parentheses:
print('Hello World!')
$ conda create -n py39 python=3.9
To use Python 3.9:
$ conda activate py39
To check if you have the correct version:
$ python --version