0

What are the steps to configure a user account so when they log in they have the ability to run a python script without having access to the source code of the script itself?

TKK
  • 199
  • 1
  • 6
  • Does this answer your question? [How do I make a python script executable?](https://stackoverflow.com/questions/27494758/how-do-i-make-a-python-script-executable) – wxz Apr 07 '21 at 14:00
  • Combine making the script executable, and then take away read/write permissions. – wxz Apr 07 '21 at 14:00

1 Answers1

0

Maybe try Nuitka, it is a Python to C++ converter.
python -m pip install nuitka python -m nuitka --mingw64 example.py