View on GitHub

coding-tutorials

Advanced Python - Conda, packages, and scripting

Return to the Coding tutorials mainpage

← Back to Basic Python

Goal

This tutorial is meant to go over how to set up Conda environments, import python packages, and make and run scripts.

Contents

  1. Conda environments
    1. What is Conda?
    2. Setting up a Conda environment
    3. Activating and deactivating environments
    4. Removing environments
  2. Python packages
    1. What is a package?
    2. Installing a new package
    3. Importing a package
  3. Scripts
    1. Running scripts
    2. Genereal strucuture
    3. Arguments
    4. PEP8
  4. Practice
    1. Random DNA generator
    2. External resources

Continue to Conda environments →