728x90
set WORKSPACE=%USERPROFILE%\Desktop\mytu
::go to workspace
cd %WORKSPACE%
::delete exist files
cd dist
DEL /s /f /q *.*
::make exe
cd ..
pyinstaller --onefile --noconsole mytu.py
::copy ui
copy mytu.ui .\dist
::UNC setting
pushd "\\192.168.12.34\QC_Storage\Etc\mytu"
set NETWORK_FOLDER=%CD%
DEL /s /f /q *.*
::copy files to network folder
c:
cd %WORKSPACE%\dist
copy . %NETWORK_FOLDER%
::UNC setting disconnect
popd
---
cmd 네트워크 경로에 대한 참고 링크
http://cleverdj.tistory.com/109
---
https://pypi.org/project/auto-py-to-exe/
728x90
'Python' 카테고리의 다른 글
윈도우 환경에서 django 설치 (0) | 2018.03.06 |
---|---|
XP 환경에서 Python+PyQT 실행 (0) | 2017.12.20 |
[파이썬] admin 권한으로 명령어 실행하기 (0) | 2017.10.25 |
파이썬 참고 링크 모음 (0) | 2017.10.19 |
파이썬3 & PyQt5 설치 및 구동 (0) | 2017.10.16 |