This commit is contained in:
龙澳 2025-01-18 10:49:02 +08:00
parent 8cfef9ce4f
commit 643062a4a2
2 changed files with 0 additions and 75 deletions

View File

@ -13,7 +13,3 @@ Centos7安装open3d失败执行
```bash
conda install -c conda-forge open3d
```
## TODO
- 目前obj转osgb的软件windows没有装上linux成功了,后续需要做一个docker镜像

View File

@ -1,71 +0,0 @@
# -*- mode: python ; coding: utf-8 -*-
import sys
from PyInstaller.utils.hooks import collect_data_files
import numpy
block_cipher = None
# 收集相关文件
numpy_data = collect_data_files('numpy')
sklearn_data = collect_data_files('sklearn')
a = Analysis(
['main.py'],
pathex=[],
binaries=[],
datas=[
(numpy.__path__[0], 'numpy'),
*numpy_data,
*sklearn_data
],
hiddenimports=[
'numpy',
'numpy.core._methods',
'numpy.lib.format',
'numpy.core._multiarray_umath',
'sklearn',
'sklearn.neighbors._partition_nodes',
'sklearn.neighbors._quad_tree',
'sklearn.utils._cython_blas',
'sklearn.utils._typedefs',
'sklearn.utils._heap',
'sklearn.utils._sorting',
'sklearn.utils._vector_sentinel',
'setuptools',
'setuptools.distutils',
'setuptools.distutils.version',
'distutils',
'distutils.version'
],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='odm_preprocess',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
disable_windowed_traceback=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)