Skip to content
This repository has been archived by the owner on Jul 31, 2019. It is now read-only.

This PS fixes a issue pip version(10.0.0) on ubuntu. #23

Merged
merged 1 commit into from
Apr 17, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 010-init-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ elif [ $OS_DISTRO == Ubuntu ]; then
else
echo "This Linux Distribution is NOT supported"
fi
pip install --upgrade pip
pip install --upgrade pip==9.0.3
pip install 'pyOpenSSL==16.2.0'
pip install 'python-openstackclient'

Expand Down
2 changes: 1 addition & 1 deletion 030-install-armada.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ elif [ $OS_DISTRO == CentOS ]; then
pip3.6 install .
elif [ $OS_DISTRO == Ubuntu ]; then
apt-get install -y python3-pip
pip3 install --upgrade pip
pip3 install --upgrade pip==9.0.3
pip3 install .
else
echo "This Linux Distribution is NOT supported"
Expand Down