Details
-
Sub-task
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
When I try to run Storm tests in Travis ARM containers, it will raise error about python packages installation, because in Travis ARM containers, the "pip" command refer to pip3 binary, so the following commands in travis-install.sh will not install required packages of Python2.
pip install --user -r ${TRAVIS_SCRIPT_DIR}/requirements.txt pip3 install --user -r ${TRAVIS_SCRIPT_DIR}/requirements.txt
it is better to explicitly specify pip2 and pip3 in the script.