We currently recommend the miniforge installer, which includes:
If you would like to use Python for the duration of this workshop without downloading anything (or have problems downloading Miniforge), we recommend using JupyterLite. JupyterLite runs completely inside your browser using WebAssembly and Pyodide and provides an identical interface to the JupyterLab IDE we’ll be using for the workshop. You can drag and drop files to upload example data later on, and you can right click on any files to download them for later use.
Read more about JupyterLite
Note: If you run into issues with JupyterLite hanging or being unable to run code, try running it in a “Private” browser window, or try clearing your browser cache. This will reset the service, so make sure to save any files you need before clearing the cache!
If you have access to UNC’s Longleaf cluster, you can use Python with the Spyder IDE or Jupyter Lab in a web browser on Research Computing’s Open OnDemand service. This service runs on the Longleaf cluster so it’s a great option for complex or long-running Python scripts.
If you’re moving from Anaconda to Miniforge, you’ll need to do a little bit of preparation first.
Mac Users: Pay particular attention to whether you need the Apple Silicon (M1, M2, etc.) or Intel version.
Mac Installation |
PC Installation |
||||
|---|---|---|---|---|---|
|
1. Download the install script to your `Downloads` folder (default location)
2. Open up your terminal To open your terminal, you can either: 1) Navigate to `Applications>Utilities>Terminal` Or 2) Use Spotlight Search * Press `Command+Space` to open Spotlight Search * Type `terminal` in Spotlight search * Press enter/return <img src = "Intro/images/terminal-spotlight-search-mac.png" alt="searching Terminal in MacOs' Spotlight Search" height = 277, width = 500/> 3. Run Installation Script * Within the terminal, type `cd Downloads` then press enter/return (this navigates you to the downloads folder) * Type `sh Mini` then press the tab button, this should autocomplete the installation file (e.g. `sh Miniforge3-Darwin-arm64.sh`) * press enter/return to run installation and follow installation steps <img src = "Intro/images/terminal-run-installation-mac.png" alt="Running the installation script on a MacOs terminal" height = 277, width = 500/> 4. Recommended: Restart Machine Restart your machine after the installation has been complete. You should now be able to open your terminal again, type `which python` and see `/Users/
1. PATH |
</tr>
</table>
## Installing Python packages
Miniconda does not include all of the Python packages we'll be using in the workshops. We'll need to install them manually.
1. Open the terminal (Mac) or Miniforge Prompt (PC)
* Mac: Finder > Applications > Utilities > Terminal
* PC: Start Menu > Miniforge3 > Miniforge Prompt
2. If coming from an Anaconda installation, check the channels list with:\
`conda config --show channels`
* If the channels list is *only* `conda-forge`, continue to step 3.
* If the channels list starts with `default`, you probably have an old .condarc file leftover from Anaconda.
+ run `conda config --show-sources` to see likely locations (any file not in a miniforge folder)
+ check C:/Users/username/.condarc on PC, or /Users/username/.condarc on Mac (replace "username" with your username)
3. Run the following to install some key packages:
`conda install jupyterlab pandas seaborn matplotlib bokeh`\
or\
`mamba install jupyterlab pandas seaborn matplotlib bokeh`
type `Y` to accept the install if prompted
4. Optionally install these packages that we'll briefly cover in a survey during the final workshop:
`conda install nltk beautifulsoup4 scikit-learn pillow polars duckdb joblib`\
or\
`mamba install nltk beautifulsoup4 scikit-learn pillow polars duckdb joblib`\
then we'll install one package only available through `pip`\
`pip install noaa_sdk`
## FAQs
### What's the difference between `conda` and `mamba`?
`mamba` translates most `conda` functionality from Python into C++, which can make some tasks a little faster. They're usually interchangeable!
### Why not work with an existing installation?
If you use macOS or Linux, then you most likely already have Python on your computer! Python does not come with Windows, but it may be on your machine as part of other software (e.g. ArcGIS Desktop).
However, unless you've worked with Python already, your pre-existing installation may only include the bare minimum and may be an out of date version. Therefore, we recommend a new installation with some extra tools for all operating systems.
### Why not use `pip` + `venv`?
The `pip` and `venv` packages are usually included with a new Python installation and cover much of the functionality of `conda`/`mamba` - installing Python packages and creating and managing virtual environments. However, `conda`/`mamba` can also install other programming languages and tools, while still using `pip` if needed.
### Why not Anaconda?
The Anaconda distribution includes conda and Python along with a large curated collection of data science oriented packages. However, Anaconda is only free to use for certain types of users. [Read more here](https://www.anaconda.com/legal)
Do not add Miniforge to your PATH variable. This may interfere with any existing Python-dependent software on your computer. <img src = "Intro/images/Miniforge_install_settings.png" alt="Miniforge_install_settings" height = 388, width = 499/> 2. Registering Python If you are installing Python for the first time, select "Register Miniforge as the system Python" If you have Python-dependent software (e.g. ArcGIS, CAD software, etc), do not check "Register Miniforge as the system Python" or it may cause issues. If you're unsure, open your PC's Command Line (Start>Windows System>Command Prompt) or Mac's Terminal (Applications>Utilities>Terminal) and type `python` and press Enter. If you already have Python you should see something like the image below - do not check Register Anaconda as the system Python.<img src = "Intro/images/Test_CMD.png" alt="Command Prompt Python" height = 87, width = 781/>
|