From e6e8dd1f669ffc2ca4bf878e3ec15dcad9d07b12 Mon Sep 17 00:00:00 2001 From: Siddhant Wahal Date: Sun, 10 Jul 2022 16:10:07 -0500 Subject: [PATCH] Add dev env setup to slides --- slides/01_intro.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/slides/01_intro.md b/slides/01_intro.md index 56a2db4..37fe1fd 100644 --- a/slides/01_intro.md +++ b/slides/01_intro.md @@ -7,7 +7,7 @@ jupyter: format_version: '1.3' jupytext_version: 1.13.7 kernelspec: - display_name: Python 3 (ipykernel) + display_name: Python 3 language: python name: python3 --- @@ -21,6 +21,27 @@ jupyter: + +## Preliminaries + +If you haven't already: +- Clone the repository: https://github.com/jonathanrocher/ets_tutorial +- Install packages: + - Using Enthought Deployment Manager (recommended) + (https://www.enthought.com/edm): + + ```bash + edm envs create bootstrap + edm install --environment bootstrap click + edm run -e bootstrap -- python ci build --environment ets_tutorial + ``` + - `ets_tutorial` will be our working Python environment. To activate: + ```bash + edm shell -e ets_tutorial + ``` + - Follow instructions in README for conda and pip + + ## Motivation