← Other topics

Getting started with Anaconda and Python on Windows

Video Notes

Preface

New to Anaconda? Start here: What is Anaconda for Python? (#1)

Download & Install

Download the Anaconda Distribution from anaconda.com/download.

Run the installer following the instructions it gives you. When complete, launch the Anaconda Navigator. If it prompts you to do any updates, click yes.

The Anaconda Navigator is a visual interface for working with the tools and programs Anaconda provides. In this guide, we’ll be highlighting environment and package manage, which can be done via the Environment tab in the Navigator.

Alternatively, this management can be done via conda, the command line program that comes with Anaconda. This latter approach is the one I’ll focus on as it’s the more robust option.

Anaconda environments can be managed via the Navigator or the conda command line program

Environments

In Anaconda, an environment is an isolated workspace that allows you to manage and organize installations of Python and its packages. Environments help avoid conflicts between different projects that may have different version requirements for their dependencies. They also make it easy to reproduce environments which is helpful if you’re working on a project with a team of other developers.

To create your first environment, we’ll call it demo, run the following in command line:

> conda create --name demo

Once your environment is created activate it with the conda activate command:

> conda activate demo

Your command prompt should be prefixed with the name of the currently active environment, e.g.:

/Users/Susan/Desktop/demo  $ conda activate demo
(demo) /Users/Susan/Desktop/demo  $

Install packages

Within our new environment we can install Python with the conda install command:

> conda install python

In the example program we’re about to create we’ll also need packages called requests and beautifulsoup4, so install them as well:

> conda install requests
> conda install beautifulsoup4

To find and learn about other packages you might use in a Python project, check out one of the following repositories:

  • Conda Forge The community curated package repository for Conda
  • PIP A popular package manager/repository used in Python that is also available/supported via Conda

Run example program

With your environment set up, let’s run an example Python script that will scrape Accuweather.com for the current temperature in a given location.

I’ll create this program on my Desktop and name it demo.py:

import requests
from bs4 import BeautifulSoup

# Specify the URL
url = "https://www.accuweather.com/en/us/cambridge/02143/weather-forecast/329319?city=cambridge"

# Adding headers to simulate a web browser request
headers = {
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'
}

# Send a GET request to the URL
response = requests.get(url, headers=headers)

# Check if the request was successful (status code 200)
if response.status_code == 200:
    # Parse the HTML content with BeautifulSoup
    soup = BeautifulSoup(response.text, 'html.parser')

    # Find the div with class "temp"
    temp_div = soup.find('div', class_='temp')

    # Check if the div was found
    if temp_div:
        # Extract and print the contents of the div
        temperature = temp_div.get_text(strip=True)
        print(f"Temperature in Cambridge: {temperature}")
    else:
        print("Div with class 'temp' not found on the page.")
else:
    print(f"Failed to retrieve the page. Status code: {response.status_code}")

With the file created, we can run it with this command:

> python demo.py

Example output:

(demo) /Users/Susan/Desktop/demo  $ python demo.py
Temperature in Cambridge: 40°F

Quick Reference

Create an environment:

> conda create --name myenv

Activate an environment:

> conda activate myenv

Deactivate the current environment:

> conda deactivate

List all environments:

> conda info --envs

Remove an environment:

> conda remove --name myenv --all 

Install a new package

> conda install packagename

List installed packages:

> conda list

List installed packages, filtering results by a package name

> conda list packagename

If this info helped you out you can say thanks and support future content by clicking my Amazon affiliate link: https://amzn.to/3UtgnYk. If you make a purchase on Amazon within 24 hours of clicking the link I may receive a micro-commission and it costs you nothing extra. Any income from these sales goes directly to supporting me in making new videos and guides. Thank you for your support!

← Other topics