Skip to content

Commit

Permalink
add git, bash to conda env (#322)
Browse files Browse the repository at this point in the history
* add git, bash to conda env

allows to download COCO dataset and run .sh scripts

* review feedback: add missing curl,unzip for COCO dataset

add missing dependencies for COCO download script.
  • Loading branch information
breznak authored Feb 10, 2020
1 parent eee5ce3 commit f54b0a5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
name: yolact-env
#prefix: /your/custom/path/envs/yolact-env
channels:
- conda-forge
- pytorch
- defaults
dependencies:
Expand All @@ -19,6 +20,10 @@ dependencies:
- cudnn
- pytorch::cuda100
- matplotlib
- git # to download COCO dataset
- curl # to download COCO dataset
- unzip # to download COCO dataset
- conda-forge::bash # to download COCO dataset
- pip:
- opencv-python
- pillow <7.0 # bug PILLOW_VERSION in torchvision, must be < 7.0 until torchvision is upgraded
Expand Down

0 comments on commit f54b0a5

Please sign in to comment.