Skip to content

Commit

Permalink
fix for systems with both Python2 and Python3 (mitre#1007)
Browse files Browse the repository at this point in the history
  • Loading branch information
mecolosimo authored and david committed Jan 9, 2020
1 parent 63868c3 commit 62fe1a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auto-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ function all_install_go_dependencies() {

function all_install_python_requirements() {
pip3 install virtualenv
virtualenv calderaenv
virtualenv -p python3 calderaenv
source calderaenv/bin/activate
pip install -r ./requirements.txt
pip3 install -r ./requirements.txt
}

function darwin_install_homebrew() {
Expand Down

0 comments on commit 62fe1a8

Please sign in to comment.