-
Notifications
You must be signed in to change notification settings - Fork 27
Installation
Jahnvi Thakkar edited this page Jul 4, 2025
·
16 revisions
- Download the latest version of Python 3 from the official Python website.
Important: Check the options as seen below and click on Install Now

Post installation, Disable path length limit and then close.
- Verify the installation by running
python --versionon command prompt. It should show the current version.
Common Troubleshooting
- If Windows Store opens up the Python 3.13 page, then click on Get button.
- If you encounter the
python is not recognizederror, please refer to online resources for instructions on how to manually add Python to your PATH.
brew install pythonor
brew upgrade pythonpython3 --versionbrew install opensslWe support Ubuntu, Debian, and RHEL / CentOS distributions. (Alpine and SUSE support will come soon)
sudo apt update
sudo apt install python3 python3-venv python3-pipsudo yum install python3 python3-venv python3-pipsudo dnf install python3 python3-venv python3-pippython3 --versionNOTE: Minimum supported version required for Python is version 3.10.
Steps (1) and (2) are optional for Windows and can be skipped.
Open a terminal (cmd / PowerShell on Windows, Terminal on Mac/Linux), switch to your working directory and run: (replace python3 with python in case of error):
python3 -m venv myvenv| OS | Command |
|---|---|
| Windows | myvenv\Scripts\activate |
| Mac/Linux | source myvenv/bin/activate |
This should show a prefix (myvenv) in the command prompt.
pip install mssql-python