Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplified installation process. #22

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,11 @@ git clone https://github.com/mlpc-ucsd/LETR.git
### Step2: Environment Installation

```bash
mkdir -p data
mkdir -p evaluation/data
mkdir -p exp
mkdir -p data evaluation/data exp


conda create -n letr python anaconda
conda activate letr
conda install -c pytorch pytorch torchvision
conda install cython scipy
conda env create -f environment.yml
pip install -U 'git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI'
pip install docopt
conda activate letr
```

### Step3: Data Preparation
Expand Down
14 changes: 14 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: letr
dependencies:
- numpy
- pytorch==1.8.0
- torchvision==0.9.0
- scipy
- opencv
- matplotlib
- jupyter
- nb_conda_kernels
- pip
- pip:
- docopt