# HG changeset patch # User ximgchess # Date 1684944838 0 # Node ID 3d849a09d6c363b7f84b1eb18cf0fa042c282567 # Parent e7fd2e5b53bacb34194cdc553dbe91fa5bbb9694 planemo upload for repository https://github.com/CHESSComputing/ChessAnalysisPipeline commit 01388c69776c82e48e84676a3d17d4623f5e08bd-dirty diff -r e7fd2e5b53ba -r 3d849a09d6c3 pip_install.sh --- a/pip_install.sh Wed May 24 16:05:52 2023 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -#!/bin/bash - -if [[ $# -ne 1 ]]; then - echo "$0 requires the package as its only command line argument" - exit -fi - -VERSION=`python --version | awk '{split($2,a,"."); printf "%s.%s", a[1], a[2]}'` -PIPLOC=`which python | sed 's/bin\/python//g'` -PIPLOC=$PIPLOC/lib/python$VERSION/site-packages - -echo "Try installing $1 to $PIPLOC" -pip install --target $PIPLOC $1 --upgrade