-
Notifications
You must be signed in to change notification settings - Fork 17
Tutorial
Chen Guoyi edited this page May 30, 2024
·
8 revisions
Before using the Picture2Pixel library, we need to install Python on your Windows 10 system. Here are the detailed installation steps:
-
Download Python installer:
- Open your browser and visit the official Python website.
- Click on the “Downloads” tab and select “Windows”.
- Find the latest version of Python on the page (there is usually a recommended version) and click the download button.
-
Run the installer:
- After the download is complete, double-click the downloaded installer.
- In the installer welcome screen, check the “Add Python to PATH” option (this is very important to ensure you can use Python directly from the command line).
- Click the “Customize installation” button.
-
Customize installation options:
- On the Optional Features page, make sure all options are selected (such as pip, tcl/tk, Python test suite, etc.), then click “Next”.
- On the Advanced Options page, it is recommended to check “Install for all users” and “Precompile standard library”, then click “Install” to begin the installation.
-
Complete the installation:
- Wait for the installer to complete all the steps. Once successful, you will see the message “Setup was successful”.
- Click “Close” to close the installer.
-
Verify the installation:
- Open the command prompt (press
Win + R
, typecmd
, and press Enter). - Type
python --version
in the command prompt. If you see something likePython 3.x.x
, it means Python is installed correctly. - You can also type
pip --version
to confirm the installation of pip (the Python package manager).
- Open the command prompt (press
At this point, Python is successfully installed on your Windows 10 system. Next, you can follow the steps in the online tutorial to learn how to use the Picture2Pixel library to create your FPGA project. It is recommended that you watch the video tutorial (5 minutes and 25 seconds) before reading the online tutorial to better understand the process.