module installcustom.install_custom_scite

Short summary

module pymyinstall.installcustom.install_custom_scite

Various functions to install SciTE.

source on GitHub

Functions

function

truncated documentation

add_shortcut_to_desktop_for_scite

create a shortcut on your desktop

install_scite

install SciTE (only on Windows)

IsSciteInstalled

check if Scite was already installed

modify_scite_properties

modifies the scite properties

Documentation

Various functions to install SciTE.

source on GitHub

pymyinstall.installcustom.install_custom_scite.IsSciteInstalled(dest_folder)

check if Scite was already installed

Parameters:

dest_folder – where it was installed

Returns:

boolean

source on GitHub

pymyinstall.installcustom.install_custom_scite.add_shortcut_to_desktop_for_scite(scite)

create a shortcut on your desktop

Parameters:

scite – scite location (SciTE.exe

Returns:

filename

source on GitHub

pymyinstall.installcustom.install_custom_scite.install_scite(dest_folder='.', fLOG=<built-in function print>, install=True, change_python_path=False, version=None)

install SciTE (only on Windows)

Parameters:
  • dest_folder – where to download the setup

  • fLOG – logging function

  • install – install (otherwise only download)

  • change_python_path – update python path as well (if install is True)

  • version – version to install (unused)

Returns:

temporary file

install SciTE

The function downloads the latest version of SciTE. It also changes some settings for Python (no tabs, Courier New as a police).

install_scite("my_folder_for_scite")

Changed in version 1.1: Parameter change_python_path was added.

source on GitHub

pymyinstall.installcustom.install_custom_scite.modify_scite_properties(python_path, scite_path)

modifies the scite properties

Parameters:
  • python_path – python path

  • scite_path – scrite path

Avoid tabulations, change the path to the interpreter.

Changed in version 1.1: If python_path is None, the function does not change it.

source on GitHub