In one case, in dev_setup.sh, virtualenv was using python3.5, so now I'm forcing 2.7
parent
30a00d72ca
commit
eda393a3af
|
@ -37,8 +37,8 @@ VIRTUALENV_ROOT=${VIRTUALENV_ROOT:-"${HOME}/.virtualenvs/mycroft"}
|
||||||
|
|
||||||
# create virtualenv, consistent with virtualenv-wrapper conventions
|
# create virtualenv, consistent with virtualenv-wrapper conventions
|
||||||
if [ ! -d ${VIRTUALENV_ROOT} ]; then
|
if [ ! -d ${VIRTUALENV_ROOT} ]; then
|
||||||
mkdir -p $(dirname ${VIRTUALENV_ROOT})
|
mkdir -p $(dirname ${VIRTUALENV_ROOT})
|
||||||
virtualenv ${VIRTUALENV_ROOT}
|
virtualenv -p python2.7 ${VIRTUALENV_ROOT}
|
||||||
fi
|
fi
|
||||||
source ${VIRTUALENV_ROOT}/bin/activate
|
source ${VIRTUALENV_ROOT}/bin/activate
|
||||||
cd ${TOP}
|
cd ${TOP}
|
||||||
|
|
Loading…
Reference in New Issue