From 81a45fd690f173217384d7aa51c080f13e8f7934 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Apr 15 2020 20:42:15 +0000 Subject: Fix the venv call to work on python3 While this work on Fedora, on EL7, this create a python2 venv --- diff --git a/stats/compute.sh b/stats/compute.sh index ffc030b..256b52d 100755 --- a/stats/compute.sh +++ b/stats/compute.sh @@ -16,10 +16,7 @@ echo "* Cloning" git clone ssh://git@pagure.io/fedora-docs/localization.git --quiet echo "* Installing Python depedencies with pip" -which python -python --version -which pip -virtualenv venv +python3 -m venv venv source venv/bin/activate pip install pandas