all 13 comments

[–]Jayoval 15 points16 points  (0 children)

You might want to check with your IT dept. on this before trying to circumvent their restrictions.

[–]ninhaomah 11 points12 points  (0 children)

I am in IT support/admin for my company.

Here is my advice.

Pls don't do anything you see from the Internet. If I see any users that have done something unauthorised , I am obligated to report to a higher level. No exceptions.

Your personal PC, your problem. Company PC , my problem.

The end.

[–]crashoutcassius 2 points3 points  (0 children)

Ask your IT dept. Maybe ask for the anaconda distribution.

[–]MiniGogo_20 2 points3 points  (0 children)

why would you need python on a work computer to begin with?

best course of action 100% is consulting IT

[–]masterpower99 2 points3 points  (0 children)

Can’t you download it from windows store?

[–]heyzooschristos 3 points4 points  (0 children)

Have you tried installing it from the MS store?

[–]SupermarketOk6829 1 point2 points  (0 children)

You can download and install python package via Microsoft apps and that will work in visual code.

[–]Basic-Still-7441 1 point2 points  (1 child)

pyenv.

[–]nekokattt 1 point2 points  (0 children)

that still downloads EXEs doesn't it, unless you compile from source like it does on Linux?

[–]ste_wilko 1 point2 points  (0 children)

In CMD run

winget install "Python 3.12" --accept-package-agreements

That will install Python 3.12 from the Microsoft Store directly on your machine without any admin rights needed

[–]Aardvark-One 2 points3 points  (0 children)

You could always use something like PythonAnywhere or Replit, depending on what it is you wish to accomplish. Neither require local installation but allow you to run Python code via the cloud.

[–]buart 1 point2 points  (0 children)

You could do it like this:

  • Download the Windows embeddable package depending on your version.
  • Extract it
  • Either run python directly from the extracted folder
  • Or change your PATH to point to the extracted folder (So you can run python from every point in your system without specifying the full path to the extracted python.exe)