Skip to content

Instantly share code, notes, and snippets.

@caseyanderson
Created August 22, 2022 18:12
Show Gist options
  • Save caseyanderson/692e80f3c7f9b010a38ec6565f55509c to your computer and use it in GitHub Desktop.
Save caseyanderson/692e80f3c7f9b010a38ec6565f55509c to your computer and use it in GitHub Desktop.

Miniconda

Installation

  1. Go here to download the Miniconda 3 Installer for your operating system
  2. Once the download has finished run the installer:
    • MacOS: In the Terminal bash Downloads/Miniconda3-latest-MacOSX-x86_64.sh
    • Windows: Navigate to Downloads (or wherever you downloaded this) and double click the .exe file
  3. Follow the installation prompts
  4. Update Miniconda3:
    • MacOS: In the Terminal conda update conda
    • Windows: In Anaconda Powershell Prompt (miniconda3) execute conda update conda
  5. Agree to the installation prompts

Environment Setup

  1. Create and name a new Python environment conda create -n physcpu1 python
  2. Activate the environment conda activate physcpu1
  3. Install Jupyter Notebook via pip pip install notebook
  4. Run Jupyter Notebook jupyter notebook
  5. Quick tour of Jupyter Notebook
  6. From home page find and click on the Quit button to shutdown the server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment