개발환경 5

[Anaconda] PowerShell 아나콘다 활성화

초기 PowerShell에서 conda 명령어는 사용할 수 없다. 아래 세팅을 통해 PowerShell에서도 conda 명령어를 사용할 수 있게 된다. 단, 가상환경 접속 등 아나콘다 명령어에 conda를 붙여야한다. Anaconda Prompt activate PowerShell conda activate 1. Anaconda Prompt 관리자 권한으로 실행 우클릭 -> 관리자 권한으로 실행 2. 콘다 패키지 관리자 및 모든 하위 패키지 업데이트 conda update --all y 입력 3. 콘다 PowerShell 이니셜라이징 conda init powershell 이렇게 뜨면 정상 4. Windows PowerShell 권한 변경(PowerShell에서 입력) Set-ExecutionPolicy..

[기타] PowerShell 설치

1. PowerShell 홈페이지 https://docs.microsoft.com/ko-kr/powershell/ PowerShell 설명서 - PowerShell PowerShell 공식 제품 설명서 docs.microsoft.com 해당 위치에서 우측상단 PowerShell 다운로드 클릭 맨 아래로 이동 후 PowerShell-7.1.3-win-x64.msi 클릭(윈도우10 64비트 기준) 2. PowerShell 설치 Next -> Next -> Next -> Install 클릭(모두 기본값으로 설치) 3. PowerShell 설치 확인 PowerShell 검색 후 있는지 확인

개발환경/기타 2021.05.16

[Anaconda] 아나콘다 설치

1. 아나콘다 홈페이지 https://www.anaconda.com/distribution/#download-section Anaconda | Individual Edition Anaconda's open-source Individual Edition is the easiest way to perform Python/R data science and machine learning on a single machine. www.anaconda.com 본인의 OS에 맞게 다운로드(여기는 Windows 64비트 설치) 2. 아나콘다 설치 이 화면만 All Users 체크 후 전부다 기본값으로 Next 클릭!! (설치경로 : C:\ProgramData\Anaconda3) 3. 아나콘다 설치 확인 Anaconda ..

1