fft/run.sh

14 lines
237 B
Bash
Raw Permalink Normal View History

2023-07-17 07:49:15 +00:00
#!/usr/bin/env bash
# if .venv does not exist, create it
if [ ! -d ".venv" ]; then
echo "Creating virtual environment..."
python3 -m venv .venv
fi
. .venv/bin/activate
pip install -r requirements.txt
jupyter lab fft.ipynb
```