No, there is nothing inherently insecure about python. However Python can be used to make a vulnerability. For instance it would be easy to make a web portal that executes anything that is typed in. This is true for any programming language, but python makes it extra easy. And I know, you would know better, but IT departments see all their users as idiots (often with good reason). Answer from novel_yet_trivial on reddit.com
🌐
Reddit
reddit.com › r/learnpython › will downloading python mess up my os
r/learnpython on Reddit: Will downloading python mess up my os
September 19, 2024 -

Hey everyone so I brought a book teaching to programme in python for absolute beginners and it says you have to download python 3 but also warns that windows os systems can get glitchy and confused by it. I have windows 11 and just got the computer a few months ago so was wondering if it was safe to download without messing my computer up? I'm totally new to programming so sorry if this is a stupid question

🌐
Reddit
reddit.com › r/python › is python a security vulnerability?
r/Python on Reddit: Is Python a Security Vulnerability?
November 20, 2017 -

I recently sent a request to my employer's IT department asking for access to Python 3.6.3. The request was denied with the justification "Python is dangerous to have on a pc. It is a useful attack vector."

Can anyone provide insight on what this might mean? Does simply having Python installed on your computer make you more susceptible to attacks? I can't tell if my employer has a valid concern here or if they are just taking the easy route.

EDIT: Spelling

🌐
Reddit
reddit.com › r/pythonlearning › just starting.... safe to download?
Just Starting.... Safe to Download? : r/PythonLearning
September 23, 2024 - Its only almost happened to me a few times (i used some plugins that were compromised and i had not updated them and i read about the issue at a later date on forums). ... For python, you'll download the core python software, a development environment, and then you'll quickly find that you'll need to download additional libraries for functionality, depending upon what you're trying to build.
🌐
Reddit
reddit.com › r/learnpython › how safe it is to install a python project from github?
r/learnpython on Reddit: How safe it is to install a python project from GitHub?
July 8, 2022 -

I am considering installing a project that I found on Github:

https://github.com/stevedsun/notion-graph-view

(it is a really small project for the number of lines of code that it has)

The project has 133 stars

It's about creating a graph view from the content of the app Notion using its API to pass the information that the "graph app" needs/

But how safe is that? does the information that the "graph app" takes, stays on my PC?

Top answer
1 of 13
90
Generally-speaking, a public repository doesn’t mean there isn’t some function or feature that exposes you in some way. If you’re ever unsure, don’t use it. That said, it generally also means that you can explore the code and its requirements yourself, to ensure that you’re comfortable with what’s going on. Watch for things like requests to unfamiliar servers, access granted for things you don’t expect, or third-party libraries that you’ve never heard of. If it’s worth your time coding something, it’s worth the time reading the various docs and files to make sure your work is secure and safe!
2 of 13
39
So here’s the thing: GitHub is only a repository. The repo you’ve linked is ‘open’ for all to see. Hence “open source.” This doesn’t mean that it’s 100% safe, just that you can read the code. But see, that’s the idea in open source code. You take full responsibility in reading and understanding what the code does. There’s a lot of assumptions in the community that open-source means safe. It does not. It only means “caveat emptor” (buyer beware). Do yourself a favor and do some research to form an opinion based on what what you can understand. That said, while I do not understand the code fully, I can see that it’s asking to code a token directly. This is common, but bear in mind that there are better ways to handle this that are more advanced and complex. More complicated than I can write about while replying on my phone to you.
🌐
Reddit
reddit.com › r/learnpython › what does a secure python installation look like?
r/learnpython on Reddit: What does a secure Python installation look like?
April 20, 2025 -

Python's great, everyone cheers on Python, every weird essential desktop application at the office relies on a Python install, every analyst who has hit the limits of Excel wants to use Python. I don't see anyone really talking about the security implications of having a modular scripting stack with a history of add-on compromise installed on every production workstation.

How do you secure a Python install, what do you allow in it, and how do you cope with the eleventy hundred Python modules users claim they need?

🌐
Reddit
reddit.com › r/python › never run ‘python’ in your downloads folder
r/Python on Reddit: Never Run ‘python’ In Your Downloads Folder
August 24, 2020 - However if you visit bad sites but don't interact (don't run anything downloaded from it, and politely decline any permissions it asks for), which many people would assume to be safe, then you are at risk, since most browsers let sites stick stuff in your downloads folder without asking. ... It’s an issue on “safe sites” as well as another commenter pointed out - malicious ads are a huge problem.
🌐
Reddit
reddit.com › r/learnpython › potential security risks of using python at work
r/learnpython on Reddit: Potential Security Risks of using Python at Work
January 21, 2025 -

So I wanted to install Python, download Selenium library on it, and combine it with Webdriver to access web-driven accounting software to automate some stuff; mainly downloading reports from the accounting software since there are tones of reports to download every month, which the software does not have automation function for. I don't want to deal with any data.

Senior director and I went to IT for the request to download Python and they declined; they said there is a security risk.

Does anyone know what potential security risks they are referring to? I don't have cs background so I'm not very sure. And is there a way to mitigate those risks?

🌐
Reddit
reddit.com › r/webdev › how to convince it department that python is relatively safe to use on work computer?
r/webdev on Reddit: How to convince IT Department that Python is relatively safe to use on work computer?
April 25, 2020 - I know it sounds silly and of course they should trust you, but as the IT security team their entire job is to limit trust company-wide so that it isn't as big a risk vector. They're probably rolling their eyes "why can't he just use VBA." Because they prefer the relative safety of Excel if possible. ... I don't think python is a security concern at all if OP's account has the correct permisssions, the files on the systems he has access to have the correct permissions, etc.
Find elsewhere
🌐
Reddit
reddit.com › r/learnpython › best way to install python?
r/learnpython on Reddit: Best way to install python?
March 13, 2021 -

Should i down load python from the website or through vscode? because i dont want to run into the cannot find __main__ error anymore when trying to run py files from the cmd. Before i downloaded off the website but then vscode still had to install it anyway....

So i think i had two different versions of python. Everything is now uninstalled and i am making sure any python files that got moved are deleted also. I really want everything to just work this time and i dont want to waste anymore time running into issues no one else seems to have when it comes to running python files on there computer.

Also last question, where do i save python files when i am doing a save as on vscode? i am not sure it automatically saves it to the correct place to be able to run it from the cmd.

🌐
Quora
quora.com › Is-Python-safe-for-my-computer
Is Python safe for my computer? - Quora
Answer (1 of 6): Considering Python is in regular use across tens of thousands of computer systems across the world; everything from desktop machines, to internet servers, to small devices on the Internet of Things. There is no reason to suspect that Python is any less safe than any other softwa...
🌐
Aqua Security
aquasec.com › home › application security › python security
Python Security: 6 Common Risks & What You Can Do About Them
July 23, 2024 - Like any programming language, Python is only as secure as the code that is written in it. Properly written Python code can be secure, but code that is not written securely can leave your application vulnerable to security risks.
🌐
Reddit
reddit.com › r/learnpython › which python version to download?
r/learnpython on Reddit: Which python version to download?
January 1, 2017 -

Really stupid question: which Python version should I install for Automate the Boring Stuff?

I have a win10 computer, 64 bit.

I'm completely confused by all the different downloadable files. If I just go to https://www.python.org/downloads and download from the big yellow button it seems like I'm getting a 32 bit version. Not sure though what amd64 means for the 64-bit versions. Should I always go for the latest release?

thanks.

🌐
Reddit
reddit.com › r/buhaydigital › install python on mac - is it safe?
r/buhaydigital on Reddit: Install Python on Mac - Is it safe?
6 days ago -

Hey everyone, quick question before I do something dumb 😅

I’m planning to install Python on my Mac, and I was thinking of just following steps generated by Claude to speed things up. I’m not super technical, so I’ll probably be copy-pasting commands into Terminal.

But that’s exactly what’s making me hesitate.

Has anyone here actually done this — like used Claude (or any AI) to install Python or run scripts on macOS? Did everything go smoothly, or did you run into weird issues?

Also being real here:

  • Did your Mac stay stable after?

  • Any security concerns or sketchy stuff happen after running the commands?

  • Or is this one of those things that’s totally fine as long as you know what you’re doing?

I’m just trying to avoid messing up my system or accidentally installing something shady.

Would really appreciate hearing real experiences before I go ahead with it 🙏

🌐
Reddit
reddit.com › r/learnpython › it denied my request to download python due to security reasons...
r/learnpython on Reddit: IT Denied My Request to Download Python Due to Security Reasons...
September 16, 2020 -

I used to have admin rights (data analyst) at my previous employer.

After starting my new role, as a sales analytics manager, I can’t even get python (or even a database application) installed...

Other than personal projects, any other creative ways to continue using python?

Edit: WOW! Thanks for all the feedback. I’ve addressed it to my manager and we’ve agreed to request it again after I propose a proper justification that backs up my needs to download Python. If it gets denied by IT again, my manager might go straight to the CEO but I don’t know if that’ll be necessary. Until then, I’ll have to familiarize myself with VBA again!

Suggestions to consider:

  • VM

  • Anaconda

🌐
Security Compass
securitycompass.com › home › kontra › is python secure?
Is Python Secure? - Kontra Hands-on Labs
November 11, 2025 - Python is generally secure, but like any language, its security depends on how it is used and the practices developers follow.