Python

[Sol] Powershell에서 tab키 기능 수정하기

2022. 8. 1. 15:30

Powershell에서 tab키 기능 수정하기


1) 모듈 삭제하는 방법

https://noel-embedded.tistory.com/912

 

윈도우 cmd에서 아나콘다 tab키 error

cmd에서 python을 실행한 후 if문 조건 작성 후 다음 행에서 실행문을 작성할 때 위와 같은 에러가 발생한다 readline 모듈에서 redisplay 속성을 찾을 수 없다고 하는데, 해결할 수 있는 방법이 2가지가

noel-embedded.tistory.com

 

2) *rlmain.py 파일 class BaseReadine(object) 변경

 

self.disable_readline = True 로 변경

 

https://stackoverflow.com/questions/56838545/python-hitting-tab-fails-with-python-attributeerror-module-readline-has-no-at

 

Python hitting tab fails with Python AttributeError: module 'readline' has no attribute 'redisplay'

Using Python 3.7.3 (Anaconda) on Windows, hitting tab results in the following traceback: Readline internal error Traceback (most recent call last): File "C:\...\anaconda3\lib\site-packages\pyre...

stackoverflow.com