Skip to content

Latest commit

 

History

History
60 lines (39 loc) · 2.31 KB

INSTALLATION.md

File metadata and controls

60 lines (39 loc) · 2.31 KB

Installations

Anaconda Distribution

Follow this link to the Anaconda Distribution downloads page. Scroll to the bottom of the page.

All Users

Click the download button, and follow the directions on your installer prompt image

Verifying Your Installation

Check out this webpage for ways to verify your installation worked correctly.

An easy way to test this is through your terminal/command prompt.

  1. Make sure you quit your terminal / command prompt application
  2. (Re)open it
  3. Run conda --version

You should see a version number!

Additionally, you should now have an application called Anaconda Navigator. If that application exists, you installed successfully.

Next Steps: The Plan

  1. Get an IDE up and running! For this course, we will be using a browser-based IDE called jupyter. When running, jupyter will allow use to write python code and see the results in real-time.2. Open a notebook. You can think of a notebook as a document that you will write your code in. Every time you want to write some code, you will either open an existing notebook, or create a new one.
  2. Start writing some python code! Yay!

Step 1: Get jupyter Running

You can start the Anaconda Navigator app and then launch Jupyter Notebook.

You can also launch Jupyter from your Terminal or Command Prompt. Navigate to your directory of choice and type jupyter notebook

This worked if..

  • A browser on your computer opened up
  • You get a message in your Command Prompt that looks like this: image
  • The browser is displaying something like this

Jupyter Homepage

Step 2: Open a Notebook

In your browser, click the link to the chapters page. This should show you a bunch of files (Chapters 1-8).

When you are working through a chapter, you will navigate to this screen and choose the chapter to focus on.

Step 3: Code Something!

Now we can start coding! Follow the instructions in each chapter to get going.