liusheng created STORM-3674:
-------------------------------
Summary: explicitly specify pip2 and pip3 in travis-install.sh
Key: STORM-3674
URL: https://issues.apache.org/jira/browse/STORM-3674
Project: Apache Storm
Issue Type: Sub-task
Reporter: liusheng
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.
{code:java}
pip install --user -r ${TRAVIS_SCRIPT_DIR}/requirements.txt
pip3 install --user -r ${TRAVIS_SCRIPT_DIR}/requirements.txt
{code}
it is better to explicitly specify pip2 and pip3 in the script.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)