File: packageinstall.wxs

package info (click to toggle)
python3.7 3.7.3-2%2Bdeb10u3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 92,344 kB
  • sloc: python: 547,375; ansic: 419,805; sh: 4,593; cpp: 3,449; makefile: 1,772; asm: 1,602; objc: 761; lisp: 502; pascal: 341; javascript: 313; xml: 76; csh: 21
file content (26 lines) | stat: -rw-r--r-- 1,203 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Fragment>
        <PackageGroup Id="packageinstall">
            <!--
            This is an example of installing a package using pip as part of main install.
            
            For a network-only install, remove the Payload element and change the install
            command to specify the package and (optionally) version specifier.
            
            <ExePackage Id="requests"
                        SourceFile="py.exe"
                        Compressed="yes"
                        DisplayName="!(loc.CompileAllDescription)"
                        InstallCommand='-[WinVer] -m pip install requests-2.7.0-py2.py3-none-any.whl'
                        UninstallCommand='-[WinVer] -m pip uninstall -y requests'
                        Vital="no"
                        InstallCondition="Include_pip and not LauncherOnly">
                <Payload SourceFile="requests-2.7.0-py2.py3-none-any.whl"
                         Compressed="$(var.CompressMSI)"
                         DownloadUrl="$(var.DownloadUrl)" />
            </ExePackage>
            -->
        </PackageGroup>
    </Fragment>
</Wix>