Tuesday, February 9, 2016

Installing Python Without Admin Access

Download the install msi package

Ex: python-2.7.11.msi

Install python using the msiexec command line

msiexec /a python-2.7.11.msi TARGETDIR=C:\MyBin\Python27 ADDLOCAL="all"

2 comments:

  1. You can find an MSI version via Python's FTP server. Easiest way is to find it via Google.

    https://www.google.com/search?q=python+filetype:msi

    ReplyDelete
  2. I have since switched to miniconda which helps in installing additional packages. Please look at https://conda.io/miniconda. You can install miniconda without admin access as local user

    ReplyDelete