The "NO ADMIN PRIVILEGES" part is key. I need to install Python but I do not have access to it in order to run the installation in a proper way. I'm also behind a firewall, so the "pip" option is quite limited.
Could you help me figure this out?
The "NO ADMIN PRIVILEGES" part is key. I need to install Python but I do not have access to it in order to run the installation in a proper way. I'm also behind a firewall, so the "pip" option is quite limited.
Could you help me figure this out?
From the Python website, download the MSI version of Python you wish to install.
Then open your command prompt and use this command:
msiexec /a python-2.7.10.msi /qb TARGETDIR=C:\python27
Substitute python-2.7.10.msi, if you downloaded Python 3 and adjust your TARGETDIR to where you want it to go.
The /qb flag will give you a small dialog progress bar.
python -m ensurepip to install pip into the Scripts directory.I downloaded embeddable zip file from the site. Extracted it to the folder of my choice. Then added that folder in the windows path variable (using setx). It worked for me. Well this install only python and not the other packages like pip etc.
Later I found better and simpler way with Python 3.7.0 version for windows.
This has installed all the default components of python
I suggest you use Anaconda (open source edition).
Anaconda is a completely free Python distribution (including for commercial use and redistribution). It includes more than 300 of the most popular Python packages for science, math, engineering, and data analysis.
One great feature of Anaconda is that it installs to your home folder, to which you should have write access.
It ships with a conda script that let's you install packages too.
Keep in mind that you will not be able to add it to the System PATH, though you can try to add it to your user PATH. If you can not add it to either, you will have to manually specify the full path to the python executable to run scripts from the command line.
PATH) by running: rundll32 sysdm.cpl,EditEnvironmentVariablesI would suggest you try using Anaconda. It can be installed to a local user folder without requiring admin permissions.
With this, you also get a quite nice package management conda.
Uncheck 'Install for all user' when the installation starts. Rest will be taken care by Python-3. I'm using Python-3.7.6 with this method.
This installation method will automatically updates current user's path for Python. But the application name will be py instead of python. The user has to handle environment variables if he wants to use pip or python commands.
Python38 and Python38\Scripts where Python38 is the installation folder of python. With the 3.8.1 .exe installer, I did not have to update the path manually, the installer did it for me (I had to check the relevant box).With Windows 2010 edition May 2019, you won't have to execute a msi setup or download an Anaconda edition or go to the python website.
python.exe and python3.exe already pre-installedExample: Python 3.9, which installs python and puts python on the path for the current user. So, no need for admin privileges.
There is a discussion about this on the Talk Python To ME podcast #191 with Steve Dower from Dec. 2018.
See more at "Who put Python in the Windows 10 May 2019 Update?" from the same Steve Dower (also on Stack Overflow):
This version of Python is fully maintained by the community, installs easily on Windows 10, and automatically makes common commands such as
python,pipandidleavailable (as well as equivalents with version numbers python3 and python3.7, for all the commands, just like on Linux).
Note: not2qubit adds in the comments that:
The MS Store python install is not recommended, as you will have no control of where things go,
PATH's etc.
Unless you are a first timer of Python, do it manually from the MSI (orwinget -i) installer and use the Customize installation option.You may want to check
pylauncher option if you want to be able to click apyfile to run.
This is also not standard way to run a python file, unless you're creating an entire app.
In addition, this check box will make all*.pyfiles executed using the default python file openerpy.exe, instead of an editor like (np++, VSCode, etc.), for example.
Customize installation option. You may want to check py launcher option if you want to be able to click a py file to run. This is also not standard way to run a python file, unless you're creating an entire app. In addition, this check box will make all *.py files executed using the default python file opener py.exe, instead of an editor like (np++, VSCode etc.) , for example.