๋ถ๋ฅ ์ ์ฒด๋ณด๊ธฐ (223) ์ธ๋ค์ผํ ๋ฆฌ์คํธํ [Python] pip ์ค์น, ์ ๊ทธ๋ ์ด๋ (Windows) pip ๋ฒ์ ํ์ธ pip --version pip -V pip ์ ๊ทธ๋ ์ด๋ python -m pip install --upgrade pip python -m ์์ -m ์ ๋ป -m mod : run library module as a script (terminates option list) ๊ฒฝ๋ก ์ถ๋ ฅ python -m site Site Packages๊ฐ ์ค์น๋์ด ์๋ ๊ฒฝ๋ก๋ฅผ ์ถ๋ ฅํ๋ ๋ฐฉ๋ฒ python -m site --user-site pip๋ก ์ค์น ๋ฐฉ๋ฒ pip install flask # ๋ฒ์ ์ง์ pip install flask==1.1.1 # ์ ๊ทธ๋ ์ด๋ pip install -U flask pip install --upgrade flask pip install --force-reinstall flas.. [Python] pyinstaller / exe ํ์ผ ์์ฑ exe ํ์ผ ํ๋๋ก ์์ฑ pyinstaller test.py --onefile https://flytrap.tistory.com/m/23 pyinstaller ์ฉ๋ ์ค์ด๋ ๋ฐฉ๋ฒ (230MB->36MB) ํ์ด์ฌ์ ์ด์ฉํ์ฌ ํ ํ ์คํผํน ์ฐ์ต ํ๋ก๊ทธ๋จ์ ๋ง๋ค์๋๋ฐ, ๋ณ ๊ธฐ๋ฅ์ด ์๋๋ฐ ์ฉ๋์ด 230MB๋ ๋์๋ค. ํ์ธํด๋ณธ ๊ฒฐ๊ณผ ์๋์ฝ๋ค๋ฅผ ์ด์ฉํ์ฌ pyinstaller๋ฅผ ์ฌ์ฉํ๋ฉด ์๊ธฐ๋ ๋ฌธ์ ์๊ณ , ์์ ํ์ด์ฌ flytrap.tistory.com [Python] PySide6 import sys from PySide6.QtWidgets import QApplication, QWidget app = QApplication(sys.argv) window = QWidget() window.show() app.exec_() ์ฐธ๊ณ https://martinii.fun/147 [1/?] ๊ฐ๋ฐํ๊ฒฝ๊ณผ PySide6 ๋ชจ๋ ์ค์น ๋ณธ๋ฌธ์ GIF(์์งค)๋ค์ ํด๋ฆญํ๊ธฐ ์ ์๋ ์ด๋ฐ1์ด ์ ๋๋ง ๋ฐ๋ณตํด์ ๋ณด์ฌ์ค๋๋ค. ๋ณ๋๋ก ํด๋ฆญ์ ํด์ฃผ์ ์ผ๋ง ๋๊น์ง ์ฌ์์ด ๋๋ ์ ์ ์ํ์ฌ ์ฃผ์๊ธฐ ๋ฐ๋๋๋ค. ๊ฐ๋ฐํ๊ฒฝ๊ณผ ๋ชจ๋ ์ค์น ๊ฐ๋ฐํ๊ฒฝ ์ค์น martinii.fun [Python] ๊ฐ์ํ๊ฒฝ venv, pipenv ๋ช ๋ น์ด ์ ๋ฆฌ venv python -m venv ๊ฐ์ํ๊ฒฝ์ด๋ฆ # ํ๊ฒฝ๋ณ์ path ์ฐ์ ์์๊ฐ ๋์ python ๋ฒ์ ์ผ๋ก ์์ฑ python -m venv venv # path์ ์๊ด์์ด ์ค์น๋์ด ์๋ ํ์ด์ฌ ์ค ๋ฒ์ ์ง์ ํ์ฌ ์์ฑ py -3.8 -m venv venv # ํ์ด์ฌ์ด ์ค์น๋ ๊ฒฝ๋ก ์ด์ฉํด์ ์์ฑ D:\Programs\Python\Python310\python -m venv venv ์ค์น๋์ด์๋ ํ์ด์ฌ ๋ณด๊ธฐ : py -0 ๊ฐ์ํ๊ฒฝ ํ์ฑํ venv\Scripts\activate ๋นํ์ฑํ deactivate ํจํค์ง ์ด๋ฆ๊ณผ ๋ฒ์ ์ถ๋ ฅ pip list pip ์ผ๊ด ์ค์น pip install -r requirements.txt # ์ญ์ pip uninstall -r requirements.txt ํจํค์ง ๋ชฉ๋ก๊ณผ ๋ฒ์ .. [Node.js] Puppeteer Puppeteer sets an initial page size to 800×600px, which defines the screenshot size. The page size can be customized with Page.setViewport(). const puppeteer = require('puppeteer'); (async () => { const browser = await puppeteer.launch(); const page = await browser.newPage(); await page.goto('https://news.ycombinator.com', { waitUntil: 'networkidle2', }); await page.pdf({path: 'hn.pdf', format: .. [Python] Pillow ์ด๋ฏธ์ง ์ฌ์ด์ฆ ํ์ธ https://note.nkmk.me/en/python-opencv-pillow-image-size/ Get image size (width, height) with Python, OpenCV, Pillow (PIL) | note.nkmk.me This article describes how to get the image size (width, height) in Python with OpenCV and Pillow (PIL).The image size can be obtained as a tuple with the attribute shape of ndarray in OpenCV and the attribute size of PIL.Image in Pillow (PIL). Note that t note.. [Python] PDF ๊ด๋ จ ํจํค์ง ์ ๋ฆฌ PDFRW https://github.com/pmaupin/pdfrw GitHub - pmaupin/pdfrw: pdfrw is a pure Python library that reads and writes PDFs pdfrw is a pure Python library that reads and writes PDFs - GitHub - pmaupin/pdfrw: pdfrw is a pure Python library that reads and writes PDFs github.com https://kimhwon.github.io/pdfrw-automation/ pdfrw๋ฅผ ์ฌ์ฉํ PDF ์ ๋ฌด ์๋ํ PDF ํผ์ ์ฑ์ฐ๋ ์ ๋ฌด๋ฅผ ๋ฐ์์ต๋๋ค. ๋๋ต 600 rows ์ฏค ๋๋ ๋ฐ์ดํฐ๋ฅผ ๋ถ๋ฅํด์ PDF์ ์ฑ์ ๋ฃ.. [Discord.py] Bookmarks app_commands https://gihyeon.tistory.com/1 ๋์ค์ฝ๋ ๋ด [discord.py 2.0] ๊ธฐ๋ณธ ํ์ด์ฌ ๋ฒ์ 3.8 ๋จผ์ discord.py ์ต์ ๋ฒ์ ์ ์ค์นํฉ๋๋ค. pip install -U git+https://github.com/Rapptz/discord.py ์ค์น๊ฐ ๋๋์ จ์ผ๋ฉด ๋ด ์คํํ์ผ์ ์์ฑํด ์ค๋๋ค. from discord import Intents from discor.. gihyeon.tistory.com select menu ์ต์ ์ด .. 19๊ฐ ๊น์ง๋ง ๋๋?ใ https://www.reddit.com/r/Discordjs/comments/sf00wb/options_limit_in_select_menu/ Options Limit in Select Menu He.. ์ด์ 1 2 3 4 5 6 7 8 ยทยทยท 28 ๋ค์ ํฐ์คํ ๋ฆฌํด๋ฐ Developer๐ค๊ตฌ๋ ํ๊ธฐ