File size: 341 Bytes
edfa748
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash
# Setup script for Tensorus development environment
set -e

# Install Python dependencies
pip install --index-url https://download.pytorch.org/whl/cpu torch torchvision
pip install -r requirements.txt
pip install -r requirements-test.txt

if [[ "$INSTALL_MODELS" == "1" ]]; then
  pip install -e .[models]
fi