Chocolatey 패키지의 시스템 경로에 프로그램을 추가하는 방법
1860 단어 chocolateypowershellwindows
셀프프로모션 : 다른 글은 마이website에서 보실 수 있습니다 😉
문제가 있는
초콜릿 패키지를 만들 때 초콜릿 패키지 바이너리 폴더와 완전히 다른 위치에 프로그램을 설치하거나 excluding the executables you want to install from getting shims . 이 경우 설치된 프로그램은 시스템의
PATH
변수에 포함된 하나의 경로에 존재하지 않기 때문에 명령줄을 통해 직접 액세스할 수 없습니다.해결책
이 문제를 해결하려면 다음 두 줄 중 하나를 포함하기만 하면 됩니다.
Install-ChocolateyPath -PathToInstall "C:\actual\path\to\the\executable" -PathType User
# or, if the executable is getting shims are installed in the same place of the install script
Install-ChocolateyPath -PathToInstall $PSScriptRoot -PathType User
아주 쉬운 해결책이 아닌가요? 프로그램이 설치되는 위치만 알면 모든 것이 잘 작동합니다 😉
이 글을 읽어주신 모든 분들께 감사드리며 다음 글까지 좋은 하루 보내세요 😉
흥미로운 링크
Reference
이 문제에 관하여(Chocolatey 패키지의 시스템 경로에 프로그램을 추가하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/10xlearner/how-to-add-a-program-to-the-system-path-in-a-chocolatey-package-2p1h텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)