Installation Size of Wine

Solution 1:

Guessing and Googling is bad method here.

To install Wine you usually need to add support of 32-bit CPU architecture with

$ dpkg --add-architecture i386
$ sudo apt-get update
...
Fetched 27,9 MB in 22s (1 296 kB/s)

Note 27.9 MB in the output above.

Then we can ask APT to run a "simulation" for us to get output like shown below:

$ sudo apt-get install --assume-no wine wine32
...
0 upgraded, 252 newly installed, 0 to remove and 0 not upgraded.
Need to get 139 MB of archives.
After this operation, 1 003 MB of additional disk space will be used.

The above output got from Ubuntu MATE 20.04 LTS fully updated VM, note the 139 MB in the output above.
So we will spend 28 + 139 = 167 MB mobile data traffic and not 1.3 GB as other user states.