How to make chocolatey install python2 into custom path?
Asked Answered
M

1

3

I'm installing Python 2.7.11 using Chocolatey, which installs into C:\tools\python2:

choco install python2 -y

Is there any way I can get Python to install into C:\Python27 instead?

Mazel answered 3/1, 2016 at 21:48 Comment(0)
C
10

Yes, override the install arguments -

choco install python2 -y -o -ia "'/qn /norestart ALLUSERS=1 TARGETDIR=c:\Python27'"

Alternatively you can create a Python27 folder and it will install there.

Note that is determined by reading through the chocolateyInstall.ps1 script - https://chocolatey.org/packages/python2#files

Cuneate answered 4/1, 2016 at 20:29 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.