mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:16:30 +00:00
37 lines
1.1 KiB
Batchfile
37 lines
1.1 KiB
Batchfile
venv\Scripts\python setup.py build_ext
|
|
rmdir dist /s /q
|
|
pyinstaller --name=azaion-inference ^
|
|
--collect-all pyyaml ^
|
|
--collect-all jwt ^
|
|
--collect-all requests ^
|
|
--collect-all psutil ^
|
|
--collect-all msgpack ^
|
|
--collect-all zmq ^
|
|
--collect-all cryptography ^
|
|
--collect-all cv2 ^
|
|
--collect-all onnxruntime ^
|
|
--collect-all tensorrt ^
|
|
--collect-all pycuda ^
|
|
--collect-all pynvml ^
|
|
--collect-all re ^
|
|
--collect-all boto3 ^
|
|
--hidden-import constants ^
|
|
--hidden-import annotation ^
|
|
--hidden-import credentials ^
|
|
--hidden-import file_data ^
|
|
--hidden-import user ^
|
|
--hidden-import security ^
|
|
--hidden-import secure_model ^
|
|
--hidden-import cdn_manager ^
|
|
--hidden-import api_client ^
|
|
--hidden-import hardware_service ^
|
|
--hidden-import remote_command ^
|
|
--hidden-import ai_config ^
|
|
--hidden-import inference_engine ^
|
|
--hidden-import inference ^
|
|
--hidden-import remote_command_handler ^
|
|
start.py
|
|
|
|
copy venv\Lib\site-packages\tensorrt_libs\nvinfer_10.dll .\dist\azaion-inference\
|
|
copy venv\Lib\site-packages\tensorrt_libs\nvinfer_plugin_10.dll .\dist\azaion-inference\
|
|
copy venv\Lib\site-packages\tensorrt_libs\nvonnxparser_10.dll .\dist\azaion-inference\ |