Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- SWIFT
- postgresql
- perfect
- ubuntu
- 실행권한
- PYTHON
- Jupyter
- appium server
- Materials
- rethinkdb
- port forwarding
- sshpass
- Jupyter Notebook
- centos
- nmap
- nohup
- nGrinder
- create table
- insert
- mysql
- kitura
- 28015
- GoCD
- appium
- STF
- openpyxl
- postgres
- STF_PortForwarding
- ssh
- ftp
Archives
- Today
- Total
don't stop believing
Windows에 Chocolatey 설치하기 본문
Mac에는 Homebrew가 있고 Ubuntu에는 apt-get, CentOS에는 yum이 있습니다.
Windows에도 Choco가 있습니다. 모두 비슷하게 Package를 설치/관리해 주는 툴입니다.
Windows 10에서 Chocolatey를 설치하고 사용해 보겠습니다.
설치는 간단합니다.
https://chocolatey.org/install
먼저 Windows PowerShell (관리자)를 실행합니다.
Windows PowerShell (관리자) 실행 후 설치 가이드에 있는 PowerShell용 명령을 그대로 실행시켜 줍니다.
PS C:\WINDOWS\system32> Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).Downloa dString('https://chocolatey.org/install.ps1'))
실치가 되었다면 버전을 확인해 봅니다.
PS C:\WINDOWS\system32> choco -v 0.10.11
한가지 불편한 것은 choco를 이용해 Package들을 설치할 때 관리자 권한으로 실행해 줘야 한다는 것 입니다.
choco 명령어들은 아래 url에서 확인할 수 있습니다.
https://chocolatey.org/docs/commands-reference
Comments