{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Conda install\n", "\n", "**If you already have conda or anaconda installed, skip to `Git install` below**\n", "\n", "\n", "## For MacOS new installs\n", "\n", "\n", "1. Download miniconda from https://docs.conda.io/en/latest/miniconda.html -- choose the `Miniconda3 MacOSX 64-bit pkg` file from the menu and run it, agreeing to the licences and accepting all defaults. You should install for \"just me\"\n", "\n", "1. To test your installation, open a fresh terminal window and at the prompt type `which conda`. You should see something resembling the following output, with your username instead of `phil`:\n", "\n", "```\n", "% which conda\n", "/Users/phil/opt/miniconda3/bin/conda\n", "```\n", "\n", "## For Windows new installs\n", "\n", "1. Download miniconda from https://docs.conda.io/en/latest/miniconda.html -- choose the `Miniconda3 Windows 64-bit`. download from the menu and run it, agreeing to the licences and accepting all defaults.\n", "\n", "The installer should suggest installing in a path that looks like:\n", "\n", "```\n", "C:\\Users\\phil\\Miniconda3\n", "```\n", "\n", "2. Once the install completes hit the windows key and start typing `anaconda`. You should see a shortcut that looks like:\n", "\n", "```\n", "Anaconda Powershell Prompt\n", "(Miniconda3)\n", "```\n", "\n", "**Note that Windows comes with two different terminals `cmd` (old) and `powershell` (new). Always select the powershell version of the anaconda terminal**\n", "\n", "3. Select the short cut. If the install was successful you should see something like:\n", "\n", "```\n", "(base) (Miniconda3):Users/phil>\n", "```\n", "with your username substituted for phil.\n", "\n", "## Git install\n", "\n", "Inside your powershell or MacOs terminal, install git using conda:\n", "\n", "```\n", "conda install git\n", "```\n", "\n", "## Setting up the course repository\n", "\n", "In the terminal, change directories to your home directory (called `~` for short) and make a new directory\n", "called `repos` to hold the course notebook repository. Change into `repos` and clone the course:\n", "\n", "```\n", "cd ~\n", "mkdir repos\n", "cd repos\n", "git clone https://github.com/phaustin/numeric_students.git\n", "```\n", "\n", "## Creating the course environment\n", "\n", "In the terminal, execute the following commands:\n", "\n", "```\n", "cd numeric_students/utils\n", "conda env create -f numeric.yml\n", "conda activate numeric\n", "```\n", "\n", "## Opening the notebook folder\n", "\n", "```\n", "cd ~/repos/numeric_students/numeric_notebooks\n", "jupyter notebook\n", "```\n" ] } ], "metadata": { "jupytext": { "cell_metadata_filter": "all", "formats": "ipynb,py:percent", "notebook_metadata_filter": "all,-language_info,-toc,-latex_envs" }, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.6" }, "latex_envs": { "LaTeX_envs_menu_present": true, "autoclose": false, "autocomplete": true, "bibliofile": "biblio.bib", "cite_by": "apalike", "current_citInitial": 1, "eqLabelWithNumbers": true, "eqNumInitial": 1, "hotkeys": { "equation": "meta-9" }, "labels_anchors": false, "latex_user_defs": false, "report_style_numbering": false, "user_envs_cfg": false }, "toc": { "base_numbering": 1, "nav_menu": {}, "number_sections": true, "sideBar": true, "skip_h1_title": false, "title_cell": "Table of Contents", "title_sidebar": "Contents", "toc_cell": false, "toc_position": {}, "toc_section_display": true, "toc_window_display": true } }, "nbformat": 4, "nbformat_minor": 2 }