File size: 274 Bytes
4732e5f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/bin/bash
# Initialize Conda
source ~/miniconda3/etc/profile.d/conda.sh
# Activate the Conda environment
conda activate streamlit
# Navigate to the directory containing the script and the .git repository
cd /tmp/bmss
# Run the Python script
python update_database.py
|