Skip to content

Commit

Permalink
Added venv initialization to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
bkushigian committed Jan 11, 2024
1 parent 9537019 commit fdc55f0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion icst2024/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@

plots: clean install plots/OTvsMT_time_graph.png plots/OTvsMT.png

install:
install: venv
. .venv/bin/activate
pip install -r requirements.txt

venv:
python3 -m virtualenv .venv

plots/OTvsMT_time_graph.png:
python3 python/plot_time_analysis.py

Expand Down

0 comments on commit fdc55f0

Please sign in to comment.