반응형
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
- 프로그래밍언어론
- jenkins
- javascript
- 티스토리챌린지
- 스프링부트 웹 소켓
- Xcode
- swift
- Spring
- JPA
- 리눅스
- 스프링부트
- 42seoul
- 다이어리
- CI
- 아이패드다이어리
- CD
- 오라클
- 소켓
- libasm
- AI
- IOS
- 스프링
- springboot
- MySQL
- 네트워크
- sql
- 데이터베이스
- 오블완
- 인공지능
- DBMS
Archives
- Today
- Total
Hi yoahn 개발블로그
Mac 에서 spyder 실행 시 코드 입력 지연 문제 본문
반응형
https://github.com/spyder-ide/spyder/issues/14218
High typing latency in MacOS Big Sur · Issue #14218 · spyder-ide/spyder
Description What steps will reproduce the problem? I updated to MacOS Big Sur yesterday, and every since, typing in the editor has come with a great deal of latency - keystrokes occur nearly 0.5 se...
github.com
Mac에서 아나콘다를 다운받아 스파이더를 실행했는데, 코드 입력 시 화면에 1-2초 정도 지연이 생겨서 화면에 뒤늦게 출력되는 문제가 있었다. 굉장히 답답했는데 위 방법으로 실행하니까 괜찮아졌다.
콘다 패키지만 사용하는 경우, 솔루션은 먼저 다음을 사용하여 Spyder를 설치하는 것으로 구성됩니다.
conda create -n spyder-dev python=3
conda activate spyder-dev
conda install -c conda-forge spyder
터미널에서 다음을 실행하여 spyder를 실행시키면, 지연 문제가 사라진다.
conda activate spyder-dev
export QT_MAC_WANTS_LAYER=1
spyder
하지만 맥에서 매번 이렇게 실행해야 해서 귀찮음..
반응형
Comments