module startup.windows

Short summary

module pymyinstall.startup.windows

Function to start on Windows from scratch

Functions

function

truncated documentation

windows_default_tools_list

returns a list of tools to install

windows_startup

Installs many tools. It does not work with Python 2.7.

Documentation

Function to start on Windows from scratch

New in version 1.1.

source on GitHub

pymyinstall.startup.windows.windows_default_tools_list()

returns a list of tools to install

Returns:

list of tools

source on GitHub

pymyinstall.startup.windows.windows_startup(destination, temp_folder, params=None, fLOG=<built-in function print>)

Installs many tools. It does not work with Python 2.7.

Parameters:
  • destination – destination

  • temp_folder – temporary folder (not cleaned), for downloading purpose

  • fLOG – logging function

  • params – dictionary

Returns:

operations (what was done)

About params, it can contains:

Setup a machine

The following code tries to download many tools and packages to prepare a machine for a datascientist on Windows:

from pymyinstall.startup import windows_startup
windows_startup(r"d:\datascientist", r"d:\temp\datascientist", fLOG=print)

New in version 1.1.

source on GitHub