IPA-Transcription-EN / install.sh
arunasrivastava's picture
without eval library
3a023fb
raw
history blame
267 Bytes
# Create a virtual environment with Python 3.10
python3.10 -m venv venv
# Activate the virtual environment
source venv/bin/activate
# Install the required dependencies
pip install -r requirements.txt
# Run the application
uvicorn app:app --host 0.0.0.0 --port 7860