Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround for https://github.com/pypa/pip/issues/3165 #21

Merged
merged 1 commit into from
Apr 5, 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
4 changes: 2 additions & 2 deletions site/datasets/census/hca-download-census
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ function initialize() {
function install_hca_tool() {
echo "Installing hca tool (see ${LOGFILE} for errors)..."

if ! pip install --upgrade hca >> ${LOGFILE} 2>&1 ; then
if ! pip install hca --upgrade --ignore-installed six >> ${LOGFILE} 2>&1 ; then
echo -e "\n\nThat failed, trying again as superuser. You may be prompted for your password..."
sudo pip install --upgrade hca 2>&1 >> ${LOGFILE}
sudo pip install hca --upgrade --ignore-installed six 2>&1 >> ${LOGFILE}
fi

HCA=hca
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ function initialize() {
function install_hca_tool() {
echo "Installing hca tool (see ${LOGFILE} for errors)..."

if ! pip install --upgrade hca >> ${LOGFILE} 2>&1 ; then
if ! pip install hca --upgrade --ignore-installed six >> ${LOGFILE} 2>&1 ; then
echo -e "\n\nThat failed, trying again as superuser. You may be prompted for your password..."
sudo pip install --upgrade hca 2>&1 >> ${LOGFILE}
sudo pip install hca --upgrade --ignore-installed six 2>&1 >> ${LOGFILE}
fi

HCA=hca
Expand Down
4 changes: 2 additions & 2 deletions site/datasets/melanoma/hca-download-melanoma
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ function initialize() {
function install_hca_tool() {
echo "Installing hca tool (see ${LOGFILE} for errors)..."

if ! pip install --upgrade hca >> ${LOGFILE} 2>&1 ; then
if ! pip install hca --upgrade --ignore-installed six >> ${LOGFILE} 2>&1 ; then
echo -e "\n\nThat failed, trying again as superuser. You may be prompted for your password..."
sudo pip install --upgrade hca 2>&1 >> ${LOGFILE}
sudo pip install hca --upgrade --ignore-installed six 2>&1 >> ${LOGFILE}
fi

HCA=hca
Expand Down