dicom-interpreter / post_install.sh
Ravindu9904's picture
Create post_install.sh
f22a428 verified
raw
history blame contribute delete
290 Bytes
#!/bin/bash
# Display Python version
python --version
# Manual pydicom installation
pip install --no-cache-dir pydicom==2.4.0
pip install --no-cache-dir gdcm
# List installed packages
pip list | grep -E "pydicom|gdcm"
# Make this script executable automatically
chmod +x post_install.sh