만일 콘다가 없다면.... Anaconda Powershell 을 켜서 콘다 설치 위치를 파악하면 됩니다.
conda info
There is no Anaconda (base) in front of the command line.
1. init powershell in Conda
conda init powershell
2. Open powerhsell by admin and Set Execution Policy Unrestricted
Set-ExecutionPolicy -ExecutionPolicy Unrestricted
3. Restart Powershell
Additional 1. If you want to remove (base)
conda config --set auto_activate_base false
Additional 2. If you want to add again (base)
conda config --set auto_activate_base true
'프로그래밍' 카테고리의 다른 글
[프로그래머스 1차 추석트래픽] 파이썬 풀이 (0) | 2021.02.10 |
---|---|
[프로그래머스 삼각달팽이] 파이썬 풀이 (0) | 2021.02.09 |
[백준 1026 ] 보물 (0) | 2021.02.07 |
[백준 1120 ] 문자열 문제 풀이 (0) | 2021.02.06 |
Python CuPy를 활용한 Matrix 연산 최적화 (0) | 2021.01.26 |