]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - jacinto-ai/pytorch-jacinto-ai-devkit.git/blob - setup.sh
release commit
[jacinto-ai/pytorch-jacinto-ai-devkit.git] / setup.sh
1 #!/bin/bash
3 ######################################################################
4 # Installing dependencies
5 echo 'Installing python packages...'
6 while read req; do echo ---------- $req ----------; conda install --yes $req || pip install $req; done < requirements.txt
8 ######################################################################
9 #NOTE: THIS STEP INSTALLS THE EDITABLE LOCAL MODULE pytorch-jacinto-ai
10 #NOTE: THIS IS THE MOST IMPORTANT STEP WITHOUT WHICH NONE OF THE SCRIPTS WILL WORK
11 echo 'Installing pytorch-jacinto-ai as a local module using setup.py'
12 pip install -e ./
14 ######################################################################
15 # Installing dependencies for mmdetection - call this seperately
16 # Not calling this here, as everyone doesn't need to use object detection
17 #./setup_mmdetection.sh