Sublime Forum

[linux] Installer (solved)

#1

Hello to all,
I created a very dummy file to install in your linux distro this WONDERFUL text editor.

[size=150]Install instruction:[/size]

1-Create a file ‘setup.py’
and put it in the root of the Sublime Text directory

#!python
from setuptools import setup
setup(
    scripts = 
        'sublime_text'
    ]
)

2- run sudo python setup.py install

3- enjoy

ps you may need setuptools

0 Likes