This repository has been archived on 2025-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
2021-05-28 21:01:01 +02:00

10 lines
132 B
Bash

#!/usr/bin/env bash
project-venv() {
mkdir $1
cd $1
python -m venv venv
echo venv > .gitignore
source venv/bin/activate
}