윈도우 Chocolatey 설치 편집하기

경고: 로그인하지 않았습니다. 편집을 하면 IP 주소가 공개되게 됩니다. 로그인하거나 계정을 생성하면 편집자가 사용자 이름으로 기록되고, 다른 장점도 있습니다.

편집을 취소할 수 있습니다. 이 편집을 되돌리려면 아래의 바뀐 내용을 확인한 후 게시해주세요.

최신판 당신의 편집
2번째 줄: 2번째 줄:


==확인==
==확인==
* [[관리자 권한으로 명령 프롬프트 실행]]
* 관리자 권한으로 명령 프롬프트 실행
<syntaxhighlight lang='doscon'>
<source lang='cli'>
C:\Windows\system32>choco -v
C:\windows\system32>choco -v
'choco'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는
'choco'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는
배치 파일이 아닙니다.
배치 파일이 아닙니다.
</syntaxhighlight>
</source>


==설치==
==설치==
<syntaxhighlight lang='dos'>
<source lang='dos'>
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "(iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))) >$null 2>&1" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
</syntaxhighlight>
</source>
<syntaxhighlight lang='console'>
<source lang='cli'>
C:\Windows\system32>@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
C:\windows\system32>@powershell -NoProfile -ExecutionPolicy unrestricted -Command "(iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))) >$null 2>&1" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin


Mode                LastWriteTime    Length Name
----                -------------    ------ ----
d----      2017-10-20  오전 10:50            chocInstall
Getting latest version of the Chocolatey package for download.
Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.8
.
Downloading 7-Zip commandline tool prior to extraction.
Extracting C:\Users\user2\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.
zip to C:\Users\user2\AppData\Local\Temp\chocolatey\chocInstall...
Installing chocolatey on this machine
Creating ChocolateyInstall as an environment variable (targeting 'Machine')
  Setting ChocolateyInstall to 'C:\ProgramData\chocolatey'
WARNING: It's very likely you will need to close and reopen your shell
  before you can use choco.
Restricting write permissions to Administrators
We are setting up the Chocolatey package repository.
The packages themselves go to 'C:\ProgramData\chocolatey\lib'
  (i.e. C:\ProgramData\chocolatey\lib\yourPackageName).
A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin'
  and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName
'.


Creating Chocolatey folders if they do not already exist.
7-Zip (A) 9.20  Copyright (c) 1999-2010 Igor Pavlov  2010-11-18
 
Processing archive: C:\Users\Jmnote\AppData\Local\Temp\chocolatey\chocInstall\ch
ocolatey.zip
 
Extracting  _rels\.rels
Extracting  chocolatey.nuspec
Extracting  tools\chocolateyInstall.ps1
Extracting  tools\chocolateysetup.psm1
Extracting  tools\init.ps1
Extracting  tools\chocolateyInstall\choco.exe
... (생략)
Extracting  tools\chocolateyInstall\tools\shimgen.exe
Extracting  tools\chocolateyInstall\tools\shimgen.exe.ignore
Extracting  tools\chocolateyInstall\tools\shimgen.license.txt
Extracting  package\services\metadata\core-properties\d830953f078f45f99a2e4d814d
1b7974.psmdcp
Extracting  [Content_Types].xml
 
Everything is Ok


WARNING: You can safely ignore errors related to missing log files when
Files: 76
Size:      4893948
Compressed: 1806765
경고: It's very likely you will need to close and reopen your shell
  before you can use choco.
경고: You can safely ignore errors related to missing log files when
   upgrading from a version of Chocolatey less than 0.9.9.
   upgrading from a version of Chocolatey less than 0.9.9.
   'Batch file could not be found' is also safe to ignore.
   'Batch file could not be found' is also safe to ignore.
   'The system cannot find the file specified' - also safe.
   'The system cannot find the file specified' - also safe.
chocolatey.nupkg file not installed in lib.
</source>
Attempting to locate it from bootstrapper.
PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Add
ing...
경고: Not setting tab completion: Profile file does not exist at
'C:\Users\user2\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'.
Chocolatey (choco.exe) is now ready.
You can call choco from anywhere, command line or powershell by typing choco.
Run choco /? for a list of functions.
You may need to shut down and restart powershell and/or consoles
first prior to using choco.
Ensuring chocolatey commands are on the path
Ensuring chocolatey.nupkg is in the lib folder
</syntaxhighlight>


==확인 2==
==확인 2==
* CMD 창 닫고 다시 열기 (혹은 CMD 혹은 powershell에서 <code>refreashenv</code>를 실행하면 path를 포함한 env갱신이 됨.)
<source lang='cli'>
<syntaxhighlight lang='doscon'>
C:\windows\system32>choco -v
C:\Windows\system32>choco -v
0.9.9.11
0.10.8
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
* [[Chocolatey 실행타임아웃 시간 늘리기]]
*[[윈도우 wget 설치]]
* [[윈도우 wget 설치]]
*[[chocolatey 삭제]]
* [[chocolatey 삭제]]
* [[Chocolatey]]
* [https://www.lainyzine.com/ko/article/how-to-install-package-manager-chocolatey-on-windows-10/ 윈도우 패키지 매니저 Chocolatey를 설치하는 방법]


==참고==
==참고 자료==
* https://chocolatey.org/install
*https://github.com/chocolatey/chocolatey/wiki/Installation


[[분류: Choco]]
[[분류: Choco]]

제타위키에서의 모든 기여는 크리에이티브 커먼즈 저작자표시-동일조건변경허락 3.0 라이선스로 배포된다는 점을 유의해 주세요(자세한 내용에 대해서는 제타위키:저작권 문서를 읽어주세요). 만약 여기에 동의하지 않는다면 문서를 저장하지 말아 주세요.
또한, 직접 작성했거나 퍼블릭 도메인과 같은 자유 문서에서 가져왔다는 것을 보증해야 합니다. 저작권이 있는 내용을 허가 없이 저장하지 마세요!

취소 편집 도움말 (새 창에서 열림)