Skip to content

Installation

jmg1138 edited this page Nov 9, 2017 · 17 revisions

From Source Code

Prerequisites

Python 2.7

PyGTK

sudo apt install python-gtk2

pip

sudo apt install python-pip

wxPython prerequisites

sudo apt install dpkg-dev \
  build-essential \
  python2.7-dev \
  libjpeg-dev \
  libtiff-dev \
  libsdl1.2-dev \
  libgstreamer-plugins-base1.0-dev \
  libnotify-dev \
  freeglut3 \
  freeglut3-dev \
  libsm-dev \
  libgtk2.0-dev \
  libwebkitgtk-dev

Clone tmpNote

clone https://github.com/nothingworksright/tmpNote.git
cd tmpNote

Install requirements (wxPython)

pip install -r requirements.txt

Run tmpNote

Once the prerequisites have been installed, the source has been cloned, and the requirements have been installed, run the application using Python 2.7.

python tmpNote.py

Prebuilt Windows Distribution

Created using pyinstaller, by running this command from a Windows 10 command prompt:

pyinstaller --onefile --windowed --icon=tmpNoteIcon.ico tmpNote.py

Click here to download a prebuilt release.

Clone this wiki locally