Installing PyEnv

PyEnv is a tool that allows you to easily switch between multiple versions of Python.

Install Git for Windows: PyEnv requires Git. Download and install Git from git-scm.com.

Install PyEnv for Windows:

Open PowerShell as an administrator and run the following command to install PyEnv:

Invoke-WebRequest -UseBasicParsing -Uri https://pyenv-win.github.io/pyenv-win/install-pyenv-win.ps1 | Invoke-Expression

Update Environment Variables: Add the following paths to your system environment variables:

  • C:\Users\<Your-Username>\.pyenv\pyenv-win\bin
  • C:\Users\<Your-Username>\.pyenv\pyenv-win\shims

Restart PowerShell or Command Prompt:

Verify PyEnv Installation: Open PowerShell or Command Prompt and type:

pyenv --version

How to setup Python, PyEnv & Poetry on Windows

Setting up a robust Python development environment on Windows involves installing Python itself, managing multiple versions with PyEnv, and handling dependencies and project environments with Poetry. This guide will walk you through each step to get your system ready for efficient and organized Python development.

Prerequisites

  • Basic understanding of command-line operations.
  • Windows operating system (Windows 10 or later is recommended).

Similar Reads

Step 1: Installing Python

Download the Python Installer: Visit the official Python website and download the latest version of Python. Run the Installer: Double-click the downloaded installer. Ensure you check the “Add Python to PATH” option. Choose “Customize installation” to select the features you need (optional). Click “Install Now” to proceed with the installation. Verify the Installation: Open Command Prompt (cmd) and type:...

Step 2: Installing PyEnv

PyEnv is a tool that allows you to easily switch between multiple versions of Python....

Step 3: Installing Poetry

Poetry is a dependency management and packaging tool for Python. It helps to manage dependencies, virtual environments, and packaging....

Step 4: Setting Up a Python Project with PyEnv and Poetry

Choose Python Version with PyEnv:...

Contact Us