Notice
														
												
											
												
												
													Recent Posts
													
											
												
												
													Recent Comments
													
											
												
												
													Link
													
											
									| 일 | 월 | 화 | 수 | 목 | 금 | 토 | 
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 | 
| 12 | 13 | 14 | 15 | 16 | 17 | 18 | 
| 19 | 20 | 21 | 22 | 23 | 24 | 25 | 
| 26 | 27 | 28 | 29 | 30 | 31 | 
													Tags
													
											
												
												- PER
- IOS
- 맛집
- 리눅스
- Linux
- tensorflow
- mssql
- node.js
- swift
- GIT
- sqlite
- PyQt5
- 다이어트
- ASP
- 함수
- 라즈베리파이
- ubuntu
- MS-SQL
- python
- port
- pandas
- 유니티
- 날짜
- Unity
- Excel
- PyQt
- urllib
- javascript
- flutter
- MySQL
													Archives
													
											
											
											
											목록Pyinstaller (2)
아미(아름다운미소)
 Pyinstaller “Failed to execute script pyi_rth_pkgres” and missing packages
			
			
				Pyinstaller “Failed to execute script pyi_rth_pkgres” and missing packages
				pyinstaller No module named pkg_resources.py2_warn 환경(윈도우7, 아나콘다3 : 파이썬3.7 가상환경) 에러메세지(Pyinstaller 에러 시(Version 3.7)) Pyinstaller 에러 시(Version 3.7) 삭제 후 재설치 pip uninstall pyinstaller pip install https://github.com/pyinstaller/pyinstaller/archive/develop.zip
				랭귀지/python
				
				2020. 2. 6. 17:56
			
		pyinstaller설치하기사이트 pyinstaller exe 파일 만들기 exe 파일을 만드려고 하는 python 폴더로 갑니다. 가령 원하는 python 파일 myPython 폴더에 있는 myProject.py라고 하면, cmd창에서 다음과 같이 입력하면 됩니다. d:\myPython> pyinstall.exe myProject.py단일 파일로 만들기만약 myProject.py를 하나의 exe파일로 만드려고 하면 -F 옵션을 추가하면 됩니다. d:\myPython> pyinstall.exe -F myProject.py콘솔창 숨기기 옵션만약 console창을 숨기고 싶으면 다음과 같은 --noconsole 옵션을 추가하면 됩니다. d:\myPython> pyinstaller -F --noconsole ..
				랭귀지/python
				
				2018. 11. 3. 15:48