# Installing Python If Python is already installed on your system, uv will [detect and use](#using-an-existing-python-installation) it without configuration. However, uv can also install and manage Python versions for you. !!! tip uv will [automatically fetch Python versions](#automatic-python-downloads) as needed — you don't need to install Python to get started. To install the latest Python version: ```console $ uv python install ``` This will install a uv managed Python version even if there is already a Python installation on your system. !!! note Python does not publish official distributable binaries so uv uses third-party distributions from the [`python-build-standalone`](https://github.com/indygreg/python-build-standalone) project. The project is partially maintained by the uv maintainers and is used by many other Python projects. See the [Python distributions](../concepts/python-versions.md#python-distributions) documentation for more details. Once Python is installed, it will be used by `uv` commands automatically. ## Installing a specific version To install a specific Python version: ```console $ uv python install 3.12 ``` See the [`python install`](../concepts/python-versions.md#installing-a-python-version) documentation for more details. ## Viewing Python installations To view available and installed Python versions: ```console $ uv python list ``` See the [`python list`](../concepts/python-versions.md#viewing-available-python-versions) documentation for more details. ## Automatic Python downloads Note that Python does not need to be explicitly installed to use uv. By default, uv will automatically download Python versions when they are required. For example, the following would download Python 3.12 if it was not installed: ```console $ uv run --python 3.12 python -c 'print("hello world")' ``` Even if a specific Python version is not requested, uv will download the latest version on demand. For example, the following will create a new virtual environment and download a managed Python version if Python is not found: ```console $ uv venv ``` ## Using an existing Python installation uv will also use an existing Python installation if already present on your system. There is no configuration necessary for this behavior: uv will use the system Python if it satisfies the requirements of the command invocation. See the [Python discovery](../concepts/python-versions.md#discovery-order) documentation for details. To force uv to use the system Python, provide the `--python-preference only-system` option. See the [Python version preference](../concepts/python-versions.md#adjusting-python-version-preferences) documentation for more details.