File size: 322 Bytes
9e80f82
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
find . \( -name __pycache__ -o -name "*.pyc" \) -delete
python3 -m venv venv
# Check the operating system
if [[ "$OSTYPE" == "msys" ]]; then
    # Windows
    source venv/Scripts/activate
else
    # Unix-like systems (macOS, Linux)
    source venv/bin/activate
fi
pip install --no-cache-dir -r requirements.txt