I have a .py file (make_standalone_toolchain.py) that I must run in cmd as
<NDK root dir>/build/tools/make_standalone_toolchain.py --arch arm --api 21 --stl=libc++ --install-dir /tmp/my-android-toolchain
I know the NDK dir and I am on Windows 10. Currently, my .py files open with PyCharm. this is an issue for when I run the command above, it just opens PyCharm instead of running the script and creating a toolchain.
What should my .py file open with so it will run when I use the cmd line above?