1 Star 0 Fork 14

尹哲敏/leg-kinematics

forked from tangyang/leg-kinematics 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
package.py 646 Bytes
一键复制 编辑 原始数据 按行查看 历史
"""
pyinstaller -n tvt-monitor --clean --add-data config;config -i icon-tvt.ico main.py
"""
import PyInstaller.__main__
excluded_modules = [
'scipy',
]
append_string = ''
for mod in excluded_modules:
append_string += f'--exclude-module {mod}'
PyInstaller.__main__.run([
'-y',
'-p', 'src',
'src/main.py',
# 'src/test/Test07.py',
# -F --onefile # -D,--onedir
# '--onedir',
'--onefile',
# -w --windowed # -c,--nowindowed
'--windowed',
'-n', 'DogLeg',
'-i', 'src/view/ui/res/robot.ico',
'--exclude-module', 'scipy',
'--exclude-module', 'mkl',
'--exclude-module', 'matplotlib',
])
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/zheminyin/leg-kinematics.git
git@gitee.com:zheminyin/leg-kinematics.git
zheminyin
leg-kinematics
leg-kinematics
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385