post-create-command.sh 314 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

set -e
export PATH=${HOME}/.local/bin:${PATH}

# install python packages
pip install .[dev,test,torch] --user --no-cache-dir --progress-bar=off --use-feature=in-tree-build
pre-commit install --install-hooks

# install nodejs packages
cd website
npm install --no-progress
cd -

# try superbench cli
sb