venv:
	python3 -m venv .venv
	. ./.venv/bin/activate && pip install -r requirements.txt
	echo ". ./.venv/bin/activate "

clean:
	rm -rf .venv
