Setting Up and Using Python for GPIB Scripts (Internet Connection Required) 1. Install Python ----------------- - Download Python from https://www.python.org/downloads/. - Run the installer. - Important: Check “Add Python to PATH” at the bottom of the installer. 2. Verify Python Installation ----------------------------- Open Command Prompt (Win + R, type "cmd", Enter) and run: python --version You should see the installed Python version. 3. Update pip (Python Package Manager) -------------------------------------- Run the following command: python -m pip install --upgrade pip Verify the updated version: pip --version 4. Install PyVISA ----------------- PyVISA is required for GPIB communication. Do not forget: NI MAX software must be also installed. Install PyVISA with: pip install pyvisa ================================================================ Running Your Python Script ----------------------------- Suppose your script is located in: C:\GPIB\READ_v1.2.py Steps to run it: 1. Open Command Prompt (Win + R, type "cmd", Enter) 2. Navigate to the folder: cd C:\GPIB 3. Run the script: python READ_v1.2.py You should see the script executing in the terminal.