
Python - Virtual environment creation on MacOS
Tools that will be used and needed to be installed on your Mac tox is used for automating the virtual env creation, running commands, linting, etc. poetry is used for Python package management and is used in conjunction with tox. pyenv is used for Python Version Management, to easily switch between different versions of Python, commands that can be used with pyenv. Files that are needed at the top level of your repository tox.ini is the main file that you edit to make changes. pyproject.toml should be edited using the poetry command but can be edited by hand if needed. poetry.lock should be edited using the poetry command and shouldn’t be edited by hand. Poetry Notes To first create the pyproject.toml file run
Read More