module win_installer.win_batch

Short summary

module pymyinstall.win_installer.win_batch

Creates batch file to set up the environment

source on GitHub

Functions

function

truncated documentation

create_win_batches

create batchs for the setup, they will be placed in folders[“config”]

create_win_env

create a batch file to set up the environment

create_win_glue

create a batch file to start Glue

create_win_julia_console

create a batch file to start julia

create_win_jupyter_console

create a batch file to start jupyter

create_win_jupyter_notebook

create a batch file to start Jupyter Notebook

create_win_jupyter_qtconsole

create a batch file to start Jupyter QtConsole

create_win_orange

create a batch file to start orange

create_win_putty

create a batch file to start scite

create_win_python_console

create a batch file to start python

create_win_r_console

create a batch file to start R

create_win_r_gui

create a batch file to start R Gui

create_win_rss

create a batch file to start RSS reader

create_win_scite

create a batch file to start scite

create_win_spyder

create a batch file to start spyder

create_win_sqlite_bro

create a batch file to start SqliteBro

create_win_sqllitespy

create a batch file to start sqlitespy

run_checkings

create a batch file to update all packages

update_all_packages

create a batch file to update all packages

win_check_installation

create a batch file to check the installation when well

win_install_kernels

create a batch file to install kernels

win_replace_shebang

create a batch file to replace the shebang

Documentation

Creates batch file to set up the environment

source on GitHub

pymyinstall.win_installer.win_batch.create_win_batches(folders, verbose=False, selection=None, fLOG=<built-in function print>, module_list=None)

create batchs for the setup, they will be placed in folders[“config”]

Parameters:
  • folders – dictionary with the keys tools, config, python, workspace

  • verbose – verbose

  • fLOG – logging function

  • selection – list of batchs to create

  • module_list – list of python modules to install, to know which script to install or not

Returns:

operations (list of what was done)

Changed in version 1.1: Add batch file for glue and to run some checkings.

source on GitHub

pymyinstall.win_installer.win_batch.create_win_env(folders)

create a batch file to set up the environment

Parameters:

folders – see create_win_batches

Returns:

operations (list of what was done)

source on GitHub

pymyinstall.win_installer.win_batch.create_win_glue(folders, suffix='')

create a batch file to start Glue

Parameters:
Returns:

operations (list of what was done)

New in version 1.1.

source on GitHub

pymyinstall.win_installer.win_batch.create_win_julia_console(folders)

create a batch file to start julia

Parameters:

folders – see create_win_batches

Returns:

operations (list of what was done)

source on GitHub

pymyinstall.win_installer.win_batch.create_win_jupyter_console(folders)

create a batch file to start jupyter

Parameters:

folders – see create_win_batches

Returns:

operations (list of what was done)

source on GitHub

pymyinstall.win_installer.win_batch.create_win_jupyter_notebook(folders)

create a batch file to start Jupyter Notebook

Parameters:

folders – see create_win_batches

Returns:

operations (list of what was done)

source on GitHub

pymyinstall.win_installer.win_batch.create_win_jupyter_qtconsole(folders)

create a batch file to start Jupyter QtConsole

Parameters:

folders – see create_win_batches

Returns:

operations (list of what was done)

source on GitHub

pymyinstall.win_installer.win_batch.create_win_orange(folders)

create a batch file to start orange

Parameters:

folders – see create_win_batches

Returns:

operations (list of what was done)

source on GitHub

pymyinstall.win_installer.win_batch.create_win_putty(folders)

create a batch file to start scite

Parameters:

folders – see create_win_batches

Returns:

operations (list of what was done)

source on GitHub

pymyinstall.win_installer.win_batch.create_win_python_console(folders)

create a batch file to start python

Parameters:

folders – see create_win_batches

Returns:

operations (list of what was done)

source on GitHub

pymyinstall.win_installer.win_batch.create_win_r_console(folders)

create a batch file to start R

Parameters:

folders – see create_win_batches

Returns:

operations (list of what was done)

source on GitHub

pymyinstall.win_installer.win_batch.create_win_r_gui(folders)

create a batch file to start R Gui

Parameters:

folders – see create_win_batches

Returns:

operations (list of what was done)

source on GitHub

pymyinstall.win_installer.win_batch.create_win_rss(folders, suffix='')

create a batch file to start RSS reader

Parameters:
Returns:

operations (list of what was done)

source on GitHub

pymyinstall.win_installer.win_batch.create_win_scite(folders)

create a batch file to start scite

Parameters:

folders – see create_win_batches

Returns:

operations (list of what was done)

source on GitHub

pymyinstall.win_installer.win_batch.create_win_spyder(folders)

create a batch file to start spyder

Parameters:

folders – see create_win_batches

Returns:

operations (list of what was done)

This installation uses PySide2 instead of PyQt.

set QT_API=pyside

source on GitHub

pymyinstall.win_installer.win_batch.create_win_sqlite_bro(folders, suffix='')

create a batch file to start SqliteBro

Parameters:
Returns:

operations (list of what was done)

New in version 1.1.

source on GitHub

pymyinstall.win_installer.win_batch.create_win_sqllitespy(folders)

create a batch file to start sqlitespy

Parameters:

folders – see create_win_batches

Returns:

operations (list of what was done)

source on GitHub

pymyinstall.win_installer.win_batch.run_checkings(folders, suffix='')

create a batch file to update all packages

Parameters:
Returns:

operations (list of what was done)

New in version 1.1.

source on GitHub

pymyinstall.win_installer.win_batch.update_all_packages(folders, suffix='')

create a batch file to update all packages

Parameters:
Returns:

operations (list of what was done)

Changed in version 1.1: Bug fix, update script to import function update_all (fails in 1.2).

source on GitHub

pymyinstall.win_installer.win_batch.win_check_installation(folders, suffix='')

create a batch file to check the installation when well

Parameters:
Returns:

operations (list of what was done)

source on GitHub

pymyinstall.win_installer.win_batch.win_install_kernels(folders, suffix='')

create a batch file to install kernels

Parameters:
Returns:

operations (list of what was done)

source on GitHub

pymyinstall.win_installer.win_batch.win_replace_shebang(folders, suffix='')

create a batch file to replace the shebang

Parameters:
Returns:

operations (list of what was done)

source on GitHub