발견된 문제
1. Indexing이 계속되고 파이참 실행이 안됨.
2. 설정을 건드리려고 settings를 눌러도 뜨지 않음
3. JDE펭귄(?)이 pycharm icon 대신 뜸.
해결 방안
1. 서버에 snap으로 pycharm을 깔았기 때문에 snap 명령어로 pycharm uninstall
# 설치할 때 사용했던 명령어
#sudo snap install [pycharm-professional|pycharm-community] --classic
#uninstall 시 사용한 명령어, 다른 버전은 링크1 참고
sudo snap remove pycharm-community
2. 1번으로 해결 되지 않아, find 명령어를 통해 남아있는 cache들을 지움.
sudo find / -name *PyCharm*
위 코드 실행시 아래와 같은 경로들이 나왔다. 이 경로들을 rm -rf로 삭제
3. snap을 통해서 pycharm install
4. Do not import로 설정하여 pycharm 실행
참고 링크
https://www.jetbrains.com/help/pycharm/uninstall.html#snap
Uninstall PyCharm | PyCharm
www.jetbrains.com
https://stackoverflow.com/questions/33913471/remove-pycharm-completely-ubuntu
Remove Pycharm completely , Ubuntu
I want to remove my old pycharm completely from my Ubuntu machine so my new installation will not be affected from previous settings. Any help will be appreciated
stackoverflow.com
https://intellij-support.jetbrains.com/hc/en-us/articles/206544519
Directories used by the IDE to store settings, caches, plugins and logs
Location of the IDE files depends on the operating system, product and version. 2020.1 and above versions 2019.3.x and below versions Examples for IntelliJ IDEA 2020.3: Windows: Configuration (i...
intellij-support.jetbrains.com
Import Pycharm Settings
I am getting started with using python and I downloaded PyCharm and then I get a pop up saying if I want to import PyCharm Settings and the options are: Config or installation directory or Do not i...
intellij-support.jetbrains.com
'Error' 카테고리의 다른 글
No module named 'torch' (0) | 2023.04.11 |
---|---|
Cannot find debug adapter for type 'python' (0) | 2023.02.13 |
No module named 'official' (0) | 2023.01.18 |
VScode 디버깅 모드에서 "No module name ~" error 발생했을 때 (1) | 2023.01.18 |
conda 재설치 후 jupyter notebook이 연동 안될 때 (1) | 2022.03.29 |