반응형 Python56 [Errno 13] Permission denied: '/dev/ttyUSB0' serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyUSB0: [Errno 13] Permission denied: '/dev/ttyUSB0'시리얼 포트에 대한 접근 권한이 없기 때문 `udev` 규칙을 사용하면 특정 장치에 대해 자동으로 권한을 설정할 수 있습니다. 예를 들어, `/etc/udev/rules.d/` 디렉토리에 새 규칙 파일을 생성하여 `/dev/ttyUSB0`에 대한 권한을 설정할 수 있습니다. 99-serial.rules 파일을 생성 sudo vi /etc/udev/rules.d/99-serial.rules 내용입력KERNEL="ttyUSB0", MODE="0666" udev 규칙 적용sudo udeva.. 2024. 5. 2. [Python] How to Run 70B LLMs on a Single 4GB GPU https://generativeai.pub/how-to-run-70b-llms-on-a-single-4gb-gpu-d1c61ed5258c How to Run 70B LLMs on a Single 4GB GPUHave you ever dreamed of using the state-of-the-art large language models (LLMs) for your natural language processing (NLP) tasks, but felt…generativeai.pub #https://generativeai.pub/how-to-run-70b-llms-on-a-single-4gb-gpu-d1c61ed5258cfrom airllm import AutoModelMAX_LENGTH = 128.. 2024. 4. 25. [Python]Convolutional Neural Network (CNN) & Computer Vision https://medium.com/@kaanerdenn/convolutional-neural-network-cnn-computer-vision-75f17400b261 Convolutional Neural Network (CNN) & Computer VisionIn this exploration of Convolutional Neural Networks (CNNs) and their pivotal role in the field of computer vision, we aim to lay the…medium.com In this exploration of Convolutional Neural Networks (CNNs) and their pivotal role in the field of computer.. 2024. 4. 25. [Python]Python GUI PyQt UI 생성 및 연결(Python GUI) https://realpython.com/lessons/pyqt-layouts-overview/ Creating PyQt Layouts for GUI Applications (Overview) – Real PythonHello there! In this course, we are going to create flexible GUIs in PyQt5. Specifically, here’s what we are going to make. We are going to create some GUIs that scale in the horizontal axis, some that scale on the vertical axis, some that scale on…realpython.com .. 2024. 4. 24. 이전 1 2 3 4 5 ··· 14 다음 반응형