0% found this document useful (0 votes)
10 views10 pages

4 - Install-Anaconda-v1.1

This document provides a step-by-step guide for installing Anaconda on a Windows PC, including downloading the installer and setting up the Spyder IDE. It highlights the features of Anaconda, such as the inclusion of over 250 packages and the open-source IDE Spyder. The installation process is completed by running a sample Python code in Spyder to verify successful installation.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views10 pages

4 - Install-Anaconda-v1.1

This document provides a step-by-step guide for installing Anaconda on a Windows PC, including downloading the installer and setting up the Spyder IDE. It highlights the features of Anaconda, such as the inclusion of over 250 packages and the open-source IDE Spyder. The installation process is completed by running a sample Python code in Spyder to verify successful installation.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 10

Install Anaconda on Windows PC

Version 1.1
Prepared by Ye Zhao, updated on 02/11/2023

Installation steps
1. Go to ANACONDA download page
https://www.anaconda.com/distribution/

Anaconda distribution is a distribution of the Python language for scientific computing, which
comes with over 250 packages automatically installed, including the open-source IDE Spyder.
Anaconda distribution is free for students, academics, and hobbyists.

1 / 10
2. Download the latest “Anaconda Distribution”. In this course, the Python 3.9 64-Bit
version for Windows installer is used.

3. Save the installer in your local PC.

2 / 10
4. After download, begin the installation. This step may take about 5 – 10 mins.

3 / 10
4 / 10
5 / 10
6 / 10
5. After the installation is finished, search “Spyder” and choose “open file location”

7 / 10
6. Copy and paste “Spyder (Anaconda3)” to the desktop for future use.
Note that “Jupyter Notebook”, “Anaconda Prompt” and more are also included during the
installation.

7. Run “Spyder (Aanconda3)” from the desktop.

8. Plot figures in a separate window in Spyder IDE


In Spyder IDE, go to “preference” and then choose “IPython console”. Go to “Graphics” tab and find
“Graphics backend”. Change the setting to “Automatic” as shown below.

8 / 10
9. Copy and pates the code example into the “Editor Window” as given below. You have
to save it as a Python file (extension .py) before you can run it.
import matplotlib.pyplot as plt
import numpy as np

# X axis parameter:
xaxis = np.array([2, 8])

# Y axis parameter:
yaxis = np.array([4, 9])

plt.plot(xaxis, yaxis)
plt.show()

9 / 10
10. Run file (or use shortcut F5 on your keyboard) in SPYDER IDE
Make sure it is running OK without any errors. “Figure 1” window should pop up and shown as below.

In addition, you should see the correct results in both “Variable Explorer” window and “Console”
window as shown below.

11. Congratulations! Anaconda is successfully installed.

- END -

10 / 10

You might also like