This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

*/
레이블이 chocolatey인 게시물을 표시합니다. 모든 게시물 표시
레이블이 chocolatey인 게시물을 표시합니다. 모든 게시물 표시

Node.js 설치하기

 Node.js 설치

  설치환경 : Windows 11, x64
  다운로드 위치 : https://nodejs.org/ko/

위의 다운로드 위치에서 최신 버전을 다운로드 한다.

다운로드된 파일( 여기에서는 node-v18.14.1-x64.msi )을 더블클릭해서 실행 시킨다.

라이센스 어그리먼트를 체크하고 다음으로

설치위치를 본인이 원하는 디렉토리로 지정한다.

다음.

필요한툴들을 자동으로 설치하도록 옵션을 선택한다.

옵션을 바꿀려면 이전, 아니면 설치 버튼 클릭

Node.js가 설치된다.

Node.js가 전부설치되면 완료 버튼이 나온다.

이후 추가 필요 툴들이 설치된다.

Chocolatey, Python, Visualstudio2019-workload-vctools 등이 추가적으로 설치된다.

참조

Chocolatey

 Chocolatey 는 Windows 소프트웨어의 모든 측면을 관리하기 위한 범용 패키징 형식을 사용하여 간단하고 반복 가능하며 자동화된 접근 방식을 통해 이를 단순화하여 소프트웨어 관리에 대한 일관되고 통합된 접근 방식을 제공한다.

설치

테스트환경 : Windows 11

파워쉘을 관리자 모드로 실행시킨다.

커멘드 라인에 아래 명령어를 입력한다.

Set-ExecutionPolicy Bypass -Scope Process -Force; iwr https://community.chocolatey.org/install.ps1 -UseBasicParsing | iex

문제가 없으면 잠시뒤 아래와 같이 명령어가 수행되는 것을 볼 수 있다.


정상적으로 설치되면 > choco --version 을 입력하면 아래와 같이 해당 버전을 표출한다.
혹시 설치 중 오류가 발생하면 C:\ProgramData\chocolatey 폴더를 지우고 다시 처음부터 진행한다.


참고