Python - Virtual environment creation on MacOS

Python - Virtual environment creation on MacOS

Table of Contents

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

poetry init

If Poetry isn’t installing the packages in the current directory

poetry env remove python
poetry config virtualenvs.in-project true

Running tox

To run tox, cd to the folder that has the tox.ini file and run

tox

If you want to activate the virtual environment manually.

source .tox/py31*/bin/activate

Manual process for creating a Virtual Environment

  1. Create a new Virtual Environment (cd to the location that you would like to create your Virtual Enviroment)
python3 -m venv venv
  1. To activate the virtual environment
source venv/bin/activate
  1. Installing required Applications to your virtual environment (cd to the ansible/python project)
pip install -r requirements.txt --upgrade
  1. Check for outdated pip packages
pip list --
  1. Update outdated pip packages
pip install -U package_name
  1. Update the requirements.txt file, make sure you don’t have any compatibility issues or dependency conflicts.
pip freeze > requirements.txt
  1. To deactivate the virtual environment
deactivate
comments powered by Disqus

Related Posts

Eza - A better 'ls'?

Eza - A better 'ls'?

Hey everyone, today we’re diving into the world of command-line tools, and if you’ve spent any time in the terminal, you know the ls command. It’s that classic tool for listing files and directories. But let’s be honest, ls is functional, but it could be better when it comes to readability, customization, and just overall usefulness. That’s where Eza steps in! Eza is a modern, user-friendly replacement for ls that brings more features, better performance, and, let’s face it, way better-looking output. In this video, we’ll check out why Eza is an awesome alternative to ls, how to get started with it, and some of the standout features that can make your terminal life easier.

Read More
Git WorkTree - Exploring its benefits.

Git WorkTree - Exploring its benefits.

Git is an incredibly powerful version control system that offers various features to streamline the development process. One such feature is git worktree, which allows you to manage multiple working directories within a single repository. This blog will explore what git worktree is, how to use it, and the benefits it provides.

Read More
Bat - A better 'cat'?

Bat - A better 'cat'?

Understanding the bat Command A Modern Alternative to cat When it comes to displaying file content in Linux and Unix-based systems, the cat command has been a go-to utility for decades. However, as the need for readability and additional functionality grows, a new alternative is catching the eye of developers and IT professionals alike, bat.

Read More