Skip to content

Commit 9fc572c

Browse files
committed
differences for PR #149
1 parent f2229ee commit 9fc572c

File tree

2 files changed

+10
-38
lines changed

2 files changed

+10
-38
lines changed

Diff for: md5sum.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
"learners/discuss.md" "a86dc1c2b937b0dc3b6ac34b145057de" "site/built/discuss.md" "2023-05-08"
2222
"learners/exercises.md" "8f305efe9f670305e9d23140d43ca651" "site/built/exercises.md" "2023-05-08"
2323
"learners/reference.md" "be4b8a891809c85a625fff879855921a" "site/built/reference.md" "2023-05-08"
24-
"learners/setup.md" "389afb1dcad216c0cb1e5302bf494d00" "site/built/setup.md" "2024-09-28"
24+
"learners/setup.md" "534198d96047fc7dbf96a459a484e681" "site/built/setup.md" "2025-03-14"
2525
"profiles/learner-profiles.md" "60b93493cf1da06dfd63255d73854461" "site/built/learner-profiles.md" "2023-05-08"

Diff for: setup.md

+9-37
Original file line numberDiff line numberDiff line change
@@ -2,46 +2,19 @@
22
title: Setup
33
---
44

5-
## Installing Python Using Anaconda
6-
Python is a popular language for research computing, and great for general-purpose programming as well. Installing all of its research packages individually can be a bit difficult, so we recommend Anaconda, an all-in-one installer.
5+
## Installing Python Using Miniforge
76

8-
Regardless of how you choose to install it, please make sure you install Python 3.6 or above. The latest 3.x version recommended on [Python.org][python] is fine.
7+
[Python](https://python.org) is a popular language for scientific computing, and great for general-purpose programming as well.
8+
For this workshop we use Python version 3.x.
9+
Installing all of its scientific packages individually can be a bit difficult, so we provide an environment file to help you take care of them all together.
10+
We will use the _Miniforge_ distribution of Python.
911

10-
We will teach Python using JupyterLab, a programming environment that runs in a web browser (JupyterLab will be installed by Anaconda). For this to work you will need a reasonably up-to-date browser. The current versions of the Chrome, Safari and Firefox browsers are all supported (some older browsers, including Internet Explorer version 9 and below, are not).
11-
12-
::::::::::::::::: tab
13-
14-
### Windows
15-
16-
[Watch a video tutorial for Windows][video-windows].
17-
18-
1. Open [anaconda.com/download][anaconda-dl] with your web browser.
19-
2. Download the Anaconda for Windows installer with Python 3. (If you are not sure which version to choose, you probably want the 64-bit Graphical Installer *Anaconda3-...-Windows-x86_64.exe*)
20-
3. Install Python 3 by running the Anaconda Installer, using all of the defaults for installation except make sure to check *Add Anaconda to my PATH environment variable*.
21-
22-
### Mac
23-
24-
[Watch a video tutorial for Mac][video-mac].
25-
26-
1. Open [anaconda.com/download][anaconda-dl] with your web browser.
27-
2. Download the Anaconda Installer with Python 3 for macOS (you can either use the Graphical or the Command Line Installer).
28-
3. Install Python 3 by running the Anaconda Installer using all of the defaults for installation.
29-
30-
### Linux
31-
32-
Note that the following installation steps require you to work from the shell. If you aren't comfortable doing the installation yourself stop here and request help from the workshop organizers.
33-
34-
1. Open [anaconda.com/download][anaconda-dl] with your web browser.
35-
2. Download the Anaconda Installer with Python 3 for Linux.
36-
3. Open a terminal window and navigate to the directory where the executable is downloaded (e.g., `cd ~/Downloads`).
37-
4. Type `bash Anaconda3` and press <kbd>Tab</kbd> to auto-complete the full file name. The name of file you just downloaded should appear.
38-
5. Press <kbd>Enter</kbd> (or <kbd>Return</kbd> depending on your keyboard). You will follow the text-only prompts. To move through the text, press <kbd>Spacebar</kbd>. Type `yes` and press <kbd>Enter</kbd> to approve the license. Press <kbd>Enter</kbd> (or <kbd>Return</kbd>) to approve the default location for the files. Type `yes` and press <kbd>Enter</kbd> (or <kbd>Return</kbd>) to prepend Anaconda to your PATH (this makes the Anaconda distribution the default Python).
39-
6. Close the terminal window.
40-
41-
:::::::::::::::::::::::::
12+
Please refer to the [Python section of the workshop website for installation instructions](https://carpentries.github.io/workshop-template/install_instructions/#python).
4213

4314
## JupyterLab
44-
We will teach Python using JupyterLab, a part of a family of [Jupyter][jupyter] tools that includes Jupyter Notebook and JupyterLab, both of which provide interactive web environments where you can write and run Python code. If you installed Anaconda, JupyterLab is installed on your system. If you did not install Anaconda, you can [install JupyterLab][jupyter-install] on its own using conda, pip, or other popular package managers.
15+
We will teach Python using JupyterLab, a part of a family of [Jupyter][jupyter] tools that includes Jupyter Notebook and JupyterLab, both of which provide interactive web environments where you can write and run Python code.
16+
If you followed the instructions linked above, JupyterLab is installed on your system.
17+
Alternatively, you can [install JupyterLab][jupyter-install] on its own using conda, pip, or other popular package managers.
4518

4619
## Download the data
4720

@@ -53,7 +26,6 @@ This lesson uses circulation data in multiple CSV files from the Chicago Public
5326

5427
[python]: https://python.org/downloads
5528
[video-windows]: https://www.youtube.com/watch?v=xxQ0mzZ8UvA
56-
[anaconda-dl]: https://www.anaconda.com/download/
5729
[video-mac]: https://www.youtube.com/watch?v=TcSAln46u9U
5830
[jupyter]: https://docs.jupyter.org/en/latest/
5931
[jupyter-install]: https://jupyterlab.readthedocs.io/en/stable/getting_started/installation.html

0 commit comments

Comments
 (0)