Setting Up a Python Project with PyEnv and Poetry

Choose Python Version with PyEnv:

List available Python versions:

pyenv install --list

Install the desired Python version:

pyenv install <version>

Set the local Python version for your project:

pyenv local <version>

Create a New Python Project with Poetry:

Navigate to your desired project directory and create a new project:

poetry new my-project
cd my-project

Initialize a new Poetry project in an existing directory:

poetry init

Add Dependencies with Poetry:

Add a package:

poetry add <package-name>

Add development dependencies:

poetry add --dev <package-name>

Activate the Virtual Environment: Poetry automatically creates a virtual environment for your project. To activate it:

poetry shell

Run Your Python Code: You can now run your Python scripts within this environment:

python script.py

Conclusion

By following these steps, you have set up a powerful Python development environment on Windows using Python, PyEnv, and Poetry. This setup allows you to manage multiple Python versions effortlessly and handle project dependencies and virtual environments in a streamlined way. Happy coding!


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