Guide:Mod Organizer/Python Plugins: Difference between revisions

From Step Mods | Change The Game
Line 4: Line 4:
=How to add Python plugins to Mod Organizer=
=How to add Python plugins to Mod Organizer=


==Requirements==
==requirements==
* SIP: http://www.bogotobogo.com/python/python_cpp_sip.php - a C++ wrapper (needed for PyQt4)
* python 2.7 programming language: http://www.python.org/download/releases/2.7.6/
* PyQt4: http://pyqt.sourceforge.net/Docs/PyQt4/installation.html - a GUI engine
** [http://www.python.org/ftp/python/2.7.6/python-2.7.6.msi 32Bit direct link]
 
===requirements for  user interface (optional)===
''If you don't want to edit any user interfaces you'll probably won't need it.''
 
* [http://download.qt-project.org/archive/qt/4.8/4.8.4/ Qt Framework] - includes the Qt Designer (creates .ui files)
** [http://download.qt-project.org/archive/qt/4.8/4.8.4/qt-win-opensource-4.8.4-mingw.exe direct link (mingw version)]
** an IDE (like VisualC, MinGw) is not necessary for this purpose and can be skipped during install
* [http://www.riverbankcomputing.com/software/pyqt/download PyQt4] - dev files for Qt usage in python 2.7
** [http://sourceforge.net/projects/pyqt/files/PyQt4/PyQt-4.10.3/PyQt4-4.10.3-gpl-Py2.7-Qt4.8.5-x32.exe 32Bit direct link]
 
PyQt4 comes with '''pyuic'''
Location: Python27\Lib\site-packages\PyQt4\uic\pyuic.py
 
it generates .py commands from a Qt4 .ui file:
 
pyuic.py YOURDESIGN.ui


PyQt4 gives a nice General User Interface (GUI).


==Installation==
==Installation==

Revision as of 13:59, December 22, 2013

How to add Python plugins to Mod Organizer

requirements

requirements for user interface (optional)

If you don't want to edit any user interfaces you'll probably won't need it.

PyQt4 comes with pyuic

Location: Python27\Lib\site-packages\PyQt4\uic\pyuic.py 

it generates .py commands from a Qt4 .ui file:

pyuic.py YOURDESIGN.ui


Installation

  • install SIP
  • install PyQt4