File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121make_conda () {
2222 TO_INSTALL=" $@ "
2323 conda create -n $VIRTUALENV -q --yes $TO_INSTALL
24- conda activate $VIRTUALENV
24+ source activate $VIRTUALENV
2525}
2626
2727if [[ " $PACKAGER " == " conda" ]]; then
@@ -31,7 +31,7 @@ if [[ "$PACKAGER" == "conda" ]]; then
3131 make_conda $TO_INSTALL
3232
3333elif [[ " $PACKAGER " == " ubuntu" ]]; then
34- sudo apt-get install python3-scipy libatlas3-base libatlas-base-dev libatlas-dev python3-virtualenv
34+ sudo apt-get install python3-scipy libatlas3-base libatlas-base-dev libatlas-dev libopenblas-base python3-virtualenv
3535 python3 -m virtualenv --system-site-packages --python=python3 $VIRTUALENV
3636 source $VIRTUALENV /bin/activate
3737 python -m pip install pytest pytest-cov cython
Original file line number Diff line number Diff line change 33set -e
44
55if [[ " $PACKAGER " == " conda" ]]; then
6- conda activate $VIRTUALENV
6+ source activate $VIRTUALENV
77elif [[ " $PACKAGER " == " ubuntu" ]]; then
88 source $VIRTUALENV /bin/activate
99fi
You can’t perform that action at this time.
0 commit comments