Create Poetry virtual environment (venv) using specific Python version
Firstly you need to have installed specific python version in your system, for example we need Python 3.9 (meanwhile 3.10 and 3.11 already available) Install specific python version # MacOS brew install python@3.9 Ubuntu sudo add-apt-repository ppa:deadsnakes/ppa sudo apt-get update sudo apt-get install python3.9 Windows Install specific version installer from the official Python website and then create symlink to this version cd $HOME\appdata\local\programs\python copy python39\python.exe python39\python3.9.exe Create environment # poetry env use python3. ...