Skip to content
Snippets Groups Projects
Commit f78b1533 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Add script to create and manage the virtualenv

parent cc1705f5
No related branches found
No related tags found
No related merge requests found
#!/bin/bin/env bash
if [ ! -d "venv" ]; then
echo "Creating a fresh virtualenv..."
pip install -U pip setuptools wheel
python -m venv venv
else
echo "Virtualenv already created."
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment