File size: 572 Bytes
9f88f70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

# Load the Python module, if needed (this might be specific to your cluster setup and might not be needed in Docker)
# module load python/3.9.9

# Activate the Python virtual environment
source /workspace/env/bin/activate

# Set custom Python path
export PYTHON="/workspace/env/bin/python"

# Set path to eSpeak data
export ESPEAK_DATA_PATH="/workspace/espeak-ng/espeak-ng-data"

# Add eSpeak library to library path
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/workspace/espeak-ng/lib"

# Add eSpeak binaries to PATH
export PATH="/workspace/espeak-ng/bin:$PATH"