| title | Step 1: Configure pyodbc Python development environment | Microsoft Docs |
|---|---|
| ms.custom | |
| ms.date | 07/06/2018 |
| ms.prod | sql |
| ms.prod_service | connectivity |
| ms.reviewer | |
| ms.technology | connectivity |
| ms.topic | conceptual |
| ms.assetid | 74e69704-e63c-450b-9207-5c1491d0e0f5 |
| author | David-Engel |
| ms.author | v-daenge |
Connect to SQL Database by using Python - pyodbc on Windows:
-
Download Python installer.
If your machine does not have Python, install it. Go to the Python download page and download the appropriate installer. For example, if you are on a 64-bit machine, download the Python 2.7 or 3.7 (x64) installer. -
Install Python. Once the installer is downloaded, do the following steps: a. Double-click the file to start the installer. b. Select your language, and agree to the terms. c. Follow the instructions on the screen and Python should be installed on your computer. d. You can verify that Python is installed by going to
C:\Python27orC:\Python37and runpython -Vorpy -V(for 3.x) -
Open cmd.exe as an administrator
-
Install pyodbc using pip - Python package manager (Replace
C:\Python27\Scriptswith your installed Python path)
> cd C:\Python27\Scripts
> pip install pyodbc
Connect to SQL Database by using Python - pyodbc:
-
Open terminal
-
Install pyodbc
> sudo -H pip install pyodbc