9 lines
291 B
Bash
Executable File
9 lines
291 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
python3 -m venv .venv
|
|
./.venv/bin/pip install --upgrade pip
|
|
./.venv/bin/pip install -r requirements.txt
|
|
|
|
echo "Add the following alias to your shell configuration file (e.g., .bashrc or .zshrc):"
|
|
echo "alias v_env='test -d $(pwd)/.venv && . $(pwd)/.venv/bin/activate'"
|