Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 670 Bytes

INSTALL.md

File metadata and controls

26 lines (18 loc) · 670 Bytes

Installation

We used PyTorch 1.9.1 on Ubuntu 22.04 LTS with Anaconda Python 3.7.

  1. [Optional but recommended] Create a new Conda environment.

    conda create --name omni_seg python=3.7
    

    And activate the environment.

    conda activate omni_seg
    
  2. Clone the Omni_Seg repo

  3. Install the requirements

  4. Install apex:

    cd Omni_Seg/Omni_seg_pipeline_gpu/apex
    python3 setup.py install
    cd ..