Skip to content

Instantly share code, notes, and snippets.

@mhrstmnn
Last active February 14, 2024 15:53
Show Gist options
  • Save mhrstmnn/c7e83a26de1915154dc1b55caa223bdb to your computer and use it in GitHub Desktop.
Save mhrstmnn/c7e83a26de1915154dc1b55caa223bdb to your computer and use it in GitHub Desktop.
Install the packages from the requirements.txt with pip in a virtual environment
#!/bin/zsh
python3 -m venv venv
source ./venv/bin/activate
python3 -m pip install -r requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment