Skip to content
akehrer edited this page Sep 8, 2015 · 3 revisions

Installation

If an executable is not available for your system, or you wish to run from the source code, the following should get you going.

Windows

Windows builds should be available on the Releases page.

Assuming you've already installed Python 3 (with pip):

  • Install the appropriate PyQt4 from here

  • Install the application requirements (you may want to do this in a virtual environment):

      pip3 install chardet
      pip3 install autopep8
      pip3 install pyflakes
    
  • If you wish to build an executable install cx_Freeze:

      pip3 install cx_freeze
    

OS X

Assuming you've already installed Python 3 (with pip) and homebrew:

  • Using homebrew install the following packages:

      brew install qt
      brew install sip --with-python3
      brew install pyqt --with-python3
      brew install qscintilla2 --with-python3
    
  • Install the application requirements (you may want to do this in a virtual environment):

      pip3 install chardet
      pip3 install autopep8
      pip3 install pyflakes
    
  • If you wish to build an executable install cx_Freeze:

      pip3 install cx_freeze
    

Ubuntu

Assuming you've already installed Python 3 (with pip):

  • Install PyQt4 and QScintilla:

      sudo apt-get install python3-pyqt4
      sudo apt-get install python3-pyqt4.qsci
    
  • Install the application requirements (you may want to do this in a virtual environment):

      pip3 install chardet
      pip3 install autopep8
      pip3 install pyflakes
    
  • cx_Freeze on Ubuntu 14.04 for Python 3.4 is currently causing issues that I can't seem to resolve

Clone this wiki locally