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 |
Tags
- ollama
- Llama
- 클로드
- error outputting keys and certificates
- IOS
- swift
- persona
- 파인 튜닝
- finetuning
- langchain
- Claude
- python
- MAC
- MCP
- 정보관리기술사
- 동형 암호
- 앱 인텐트
- apple intelligence
- Xcode
- AI
- LLM
- Ventura
- apache
- php
- app intents
- 애플인텔리전스
- SwiftUI
- OSX
- HTTP
- VirtualBox
Archives
- Today
- Total
목록2025/04/25 (1)
Project Jo
파이썬 UI 개발 wxPython
wxPython은 Python 프로그래밍 언어를 위한 크로스 플랫폼 GUI 툴킷입니다.Mac OS, Windows, Linux 및 Unix 기반 시스템과 같은 다양한 플랫폼에서 작동합니다. 1. 설치pip install wxpython 2. 화면 표시import wxclass MainWindow(wx.Frame): def __init__(self): super().__init__(parent=None, title='TEST', size=wx.Size(500, 200)) base_sizer = wx.BoxSizer(orient=wx.VERTICAL) self.SetSizer(base_sizer)app = wx.App()window = MainWindow()window.Show()app.M..
Developer
2025. 4. 25. 17:59