Skip to content

Commit

Permalink
update script for installing data
Browse files Browse the repository at this point in the history
  • Loading branch information
tccoin committed Mar 20, 2019
1 parent ec5669d commit 98d3288
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ install:
- conda create -n cv numpy opencv python=$TRAVIS_PYTHON_VERSION
- source activate cv
- pip install -r requirements.txt
- bash install.sh
# command to run tests
script:
- python -m unittest discover
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
conda create -n cv numpy opencv pytorch torchvision cudatoolkit=9.0 python=3.6
conda activate cv
pip install -r requirements.txt
bash install.sh
```

### Usage
Expand Down
6 changes: 6 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
cd data
wget https://github.com/RoboVigor/RV-AutoAim-Data/archive/v2.4.0.zip
unzip v2.4.0.zip
mv RV-AutoAim-Data-2.4.0/data/* .
rm RV-AutoAim-Data-2.4.0 -rf
rm v2.4.0.zip

0 comments on commit 98d3288

Please sign in to comment.