Skip to content

Commit

Permalink
changes to install latest python package
Browse files Browse the repository at this point in the history
  • Loading branch information
SaikiranGudla committed May 4, 2024
1 parent f86f1a7 commit 1000e91
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/scripts/install_pydeps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,22 @@ sudo apt-get install -y python3-pip python3-setuptools
pip install -r requirements.txt
pip install -r requirements_dev.txt
pip install pylibiio
pip install --index-url https://test.pypi.org/simple/ pylibgenalyzer
#pip install --index-url https://test.pypi.org/simple/ pylibgenalyzer

echo "Installing.. Let's try your luck"
URL="https://test-files.pythonhosted.org/packages/e7/8d/9f3d2d1dd135c625692cf954669e242683106a6b4842db76d1a238201b13/pylibgenalyzer-0.0.1.dev1705356746.tar.gz#sha256=c24046695518ad1e35751fa0df579e25ac9b634bdbfa83c75a6a74ddb48deac9"
EXTRACTED_DIR="pylibgenalyzer-0.0.1.dev1705356746"

wget "$URL"
echo "Extracting package..."

tar -xzvf pylibgenalyzer-0.0.1.dev1705356746.tar.gz



echo "Installing package..."

cd "$EXTRACTED_DIR"

sudo python3 setup.py install
echo "All done"

0 comments on commit 1000e91

Please sign in to comment.