Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 632 Bytes

installation.md

File metadata and controls

33 lines (23 loc) · 632 Bytes

Installation

Dependencies

To install LibMTL, we recommend to use the following libraries:

  • Python == 3.8
  • torch == 1.8.1+cu111
  • torchvision == 0.9.1+cu111

User Installation

  • Create a virtual environment

    conda create -n libmtl python=3.8
    conda activate libmtl
    pip install torch==1.8.1+cu111 torchvision==0.9.1+cu111 -f https://download.pytorch.org/whl/torch_stable.html
  • Clone the repository

    git clone https://github.com/median-research-group/LibMTL.git
  • Install LibMTL

    cd LibMTL
    pip install -r requirements.txt
    pip install -e .