File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- mkdir -p dist
4
-
5
- cd py && MAX_JOBS=1 LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 python3 setup.py bdist_wheel --use-cxx11-abi
6
-
7
- cd ..
8
-
9
- cp py/dist/* dist/
3
+ mkdir -p dist && cd py \
4
+ && MAX_JOBS=1 LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 python3 setup.py bdist_wheel --use-cxx11-abi \
5
+ && cp -r dist/* ../dist/
10
6
11
7
pip3 install ipywidgets --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host=files.pythonhosted.org
12
8
jupyter nbextension enable --py widgetsnbextension
13
-
14
9
pip3 install timm
15
10
16
11
# test install
17
- mkdir -p /opt/torch_tensorrt && pip3 uninstall -y torch_tensorrt && pip3 install dist/* .whl
12
+ pip3 uninstall -y torch_tensorrt && pip3 install dist/* .whl
18
13
You can’t perform that action at this time.
0 commit comments