The instructions below will take you step by step through the process. Important: you must perform these steps from an Administrator-enabled user account on your computer.
Open a new Terminal window (close and re-open if already opened). Windows: use the Anaconda Prompt program (available through the Start menu) to open a new Command window.
Test: in Terminal window, type: conda list
Windows only: run the command conda install pywin32. If you are on Mac or Linux, skip this step.
conda create --name ai python=3.12
conda activate ai
conda info
Email me the output of the above command.
Delete the Miniconda3 installer file, which is no longer needed.
On Mac or Linux:
conda activate ai idle3
On Windows:
conda activate ai idle
conda activate ai python -m pip install numpy python -m pip install matplotlib
To test the installation, start a Python session and run the following Python commands to plot a simple graph:
>>> import numpy as np >>> import matplotlib.pyplot as plt >>> x = np.arange(0, 10, 0.2) >>> plt.plot(x, x**2) >>> plt.show()