"deploy/examples/llm/components/routerless/worker.py" did not exist on "5bcdb734aee094a3932ae798d230fc30ca1d4745"
install_hh_suite.sh 329 Bytes
Newer Older
1
2
#!/bin/bash

3
4
5
6
7
git clone --branch v3.3.0 https://github.com/soedinglab/hh-suite.git /tmp/hh-suite \
  && mkdir /tmp/hh-suite/build \
  && pushd /tmp/hh-suite/build \
  && cmake -DCMAKE_INSTALL_PREFIX=/opt/hhsuite .. \
  && make -j 4 && make install \
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
8
  && ln -sf /opt/hhsuite/bin/* /usr/bin \
9
10
  && popd \
  && rm -rf /tmp/hh-suite