초콜릿을 설치할 때 경고를 어떻게 해결할 수 있나요?

초콜릿을 설치할 때 경고를 어떻게 해결할 수 있나요?

Chocolatey를 설치하면 다음과 같은 오류가 발생합니다.

여기에 이미지 설명을 입력하세요

...

WARNING: It's very likely you will need to close and reopen your shell
  before you can use choco.
...

WARNING: You can safely ignore errors related to missing log files when
  upgrading from a version of Chocolatey less than 0.9.9.
  'Batch file could not be found' is also safe to ignore.
  'The system cannot find the file specified' - also safe.
WARNING: Not setting tab completion: Profile file does not exist at
'C:\Users\Chelsea
\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'.

...

오류를 어떻게 해결할 수 있나요?

답변1

탭 완료 경고에 대한 해결 방법은 다음과 같습니다.

  1. PowerShell 세션을 열고 실행합니다. notepad $profile그러면 메모장에서 프로필 파일이 열립니다.

  2. 다음 코드를 복사하여 메모장에 붙여넣고 파일을 저장합니다.

# Chocolatey profile
$ChocolateyProfile = "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
if (Test-Path($ChocolateyProfile)) {
  Import-Module "$ChocolateyProfile"
}
  1. 파워셸 다시 시작

원천:https://docs.chocolatey.org/en-us/troubleshooting#why-does-choco-tab-not-work-for-me

답변2

방금이 경고에 직면했습니다. Windows 사용자에 대한 기존 PowerShell 프로필이 없기 때문에 발생합니다.

프로필을 만들려면 PowerShell 세션을 열고 다음을 입력하세요.

if (!(Test-Path -Path $PROFILE)) {
  New-Item -ItemType File -Path $PROFILE -Force
}

위의 코드를 다음에서 가져왔습니다.마이크로소프트의 문서. 관심이 있으시면 이 페이지에서 프로필에 대해 더 많은 내용을 다루실 수 있습니다.

관련 정보