Louie NRT Story

[python] py파일 exe 실행 파일 만들기 본문

스마트홈

[python] py파일 exe 실행 파일 만들기

hyeok0724.kim@gmail.com 2017. 11. 8. 15:21
반응형

개요

 - 파이썬이 설치되어 있지 않은 컴퓨터에도 배포해야 하는 경우 생김

 - 파이썬 실행파일로 만들어주는 모듈 cx_freeze 모듈 사용

 - 기존 py2exe 모듈이 유명하지만 파이썬 3.x 버전 부터는 지원하지 않음


환경

 - python -m pip install cx_freeze 모듈 설치


방법

 - setup.py 파일 만들기(parser.py 파일 빌드함)

import sys

from cx_Freeze import setup, Executable


setup(  name "parser",

        version "1.0",

        description "Parser",

        author "sh1n2",

        executables = [Executable("parser.py")])   


 - 'cmd'에서 같은 폴더에 넣고 python setup.py build 입력

 - build 파일이 생성됨


결론

 - parser.exe 파일만 실행하면 실행됨



출처: http://sh1n2.tistory.com/123 [가을하늘]

반응형

'스마트홈' 카테고리의 다른 글

[Firmware] M058 - PWM  (0) 2019.05.03
[Firmware] M058 - gpio_timer_delay  (0) 2019.05.03
[Firmware] M058 - gpio_output/input  (0) 2019.05.03
[인공지능] Recurrent Neural Network  (0) 2017.12.04
[인공지능] Convolutional Neural Network  (0) 2017.12.04
Comments