Spaces:
Running
Running
File size: 495 Bytes
0154235 d6d695b 0154235 d6d695b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#!/bin/bash
set -e
echo "Starting custom installation script..."
# Upgrade pip
echo "Upgrading pip..."
pip install --upgrade pip
# If you have any specific packages that need special handling, install them here
# For example:
# echo "Installing specific package..."
# pip install some-package==1.2.3
# List installed packages
echo "Listing installed packages:"
pip list
echo "Custom installation script completed."
python -m ensurepip --upgrade
python -m pip install --upgrade setuptools |