게시글
질문&답변
2021.11.06
Python Separator 옵션 Syntax 오류
저도 한참 헤멨네요~ ㅠ_ㅠ 이 글 참조하세요. https://hellobaek.tistory.com/7 맥 유저는 배우기도 힘든 듯;;
- 0
- 3
- 412
질문&답변
2021.11.06
autocomplete-python traceback output 오류 해결법(Mac)
이래저래 알아보니 아톰에서 사전처럼 쓰는 Jedi의 최신버전이 제대로 불러들이지 못하는 에러때문입니다. #453 (comment) It seems related to importing Jedi. 1- Fix the import issue error:https://stackoverflow.com/questions/63331116/python-3-6-8-jedi-importerror-cannot-import-name-traverse-parents You can use pip3 install -e git://github.com/davidhalter/jedi.git#egg=jedi for reinstalling Jedi 2- Use Jedi 0.17.2 (Release History) : pip install jedi==0.17.2 위의 방법대로 Jedi의 버전을 다운그레이드 해서 0.17.2로 설치하시면 됩니다. 설치는 터미널에서 위의 내용대로 입력하시면 됩니다. 만약 pip가 없다고 뜨면 설치를 해주셔야 하는데 아래의 내용을 참고하셔서 설치하고 업데이트까지 해주시면 됩니다. Unix/macOS python3 -m ensurepip --default-pip (사진) Windows If that still doesn’t allow you to run python -m pip: Securely Download get-pip.py 1 Run python get-pip.py. 2 This will install or upgrade pip. Additionally, it will install setuptools and wheel if they’re not installed already. Warning Be cautious if you’re using a Python install that’s managed by your operating system or another package manager. get-pip.py does not coordinate with those tools, and may leave your system in an inconsistent state. You can use pythonget-pip.py --prefix=/usr/local/ to install in /usr/local which is designed for locally-installed software. Ensure pip, setuptools, and wheel are up to date While pip alone is sufficient to install from pre-built binary archives, up to date copies of the setuptools and wheel projects are useful to ensure you can also install from source archives: Unix/macOS python3 -m pip install --upgrade pip setuptools wheel (사진) Windows
- 0
- 1
- 246