From the course: Create an Open-Source Project in Python

Unlock the full course today

Join today to access over 23,200 courses taught by industry experts.

Install Poetry

Install Poetry

- Installing poetry is very simple. You can install it with PIP, just like with any other Python library, but it is not recommended. Reason being that if you have multiple versions of Python in your computer, the installation of poetry via PIP is only tied to the Python version present during the install. This means that you would need to install poetry separately for each version of Python. The solution is to install poetry using the script hosted on install.python-poetry.org. It is a Python script that acts as an installer. By installing it this way, poetry will be isolated and will have its own environment. Also, poetry will be accessible between different Python versions and virtual environments in your computer. You can keep using whatever Python environment your project is in without installing poetry in that environment. To install using the script on install the python poetry.org is easy. With a curl command,…

Contents