본문 바로가기

Java

윈도우10 자바 이클립스 설치

반응형

https://chocolatey.org/install

 

Installing Chocolatey

Chocolatey is software management automation for Windows that wraps installers, executables, zips, and scripts into compiled packages. Chocolatey integrates w/SCCM, Puppet, Chef, etc. Chocolatey is trusted by businesses to manage software deployments.

chocolatey.org

 

powershell 관리자 권한으로 실행, chocolately 설치

 

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

 

 

 

https://community.chocolatey.org/packages?q=jdk 

 

Packages matching jdk

Chocolatey is software management automation for Windows that wraps installers, executables, zips, and scripts into compiled packages. Chocolatey integrates w/SCCM, Puppet, Chef, etc. Chocolatey is trusted by businesses to manage software deployments.

community.chocolatey.org

 

 

패키지 검색창에 jdk 검색, 원하는 버전을 choco로 설치

 

choco install ojdkbuild

 

설치가 완료되면 refreshenv 명령어 입력 후 환경변수 자동 설정

 

이후 이클립스 설치할때와 실행할때 자동으로 자바 감지함

반응형