Building Python Scripts Using Sublime Text


Hi guys,how you doing!
Today I'm gonna show you how to build,compile or actually interpret python scripts using Sublime text 3,so you'll not need to use classical interpreter.

Open up you sublime text editor...

First you have to set the syntax to python by going to View>Syntax>Python>Python or just simply by using CTRL+SHIFT+P and write set python.

Secondly,you have to write the shebang line to declare the python interpreter path on your operating system, for me I use Kali Linux(it work for all Linux Distributions)
#!/usr/bin/env python
Thirdly,save the file and finally go to Tools>Build or simply use CTRL+B to compile the script...
watch the video...


I hope you enjoy it,see you next time

Comments