I executed this:
$ pip download virtualenv
Collecting virtualenv
Using cached virtualenv-20.0.31-py2.py3-none-any.whl (4.9 MB)
Saved d:\test\gits\virtualenv-20.0.31-py2.py3-none-any.whl
Collecting appdirs<2,>=1.4.3
Using cached appdirs-1.4.4-py2.py3-none-any.whl (9.6 kB)
Saved d:\test\gits\appdirs-1.4.4-py2.py3-none-any.whl
Collecting six<2,>=1.9.0
Using cached six-1.15.0-py2.py3-none-any.whl (10 kB)
Saved d:\test\gits\six-1.15.0-py2.py3-none-any.whl
Collecting distlib<1,>=0.3.1
Using cached distlib-0.3.1-py2.py3-none-any.whl (335 kB)
Saved d:\test\gits\distlib-0.3.1-py2.py3-none-any.whl
Collecting filelock<4,>=3.0.0
Using cached filelock-3.0.12-py3-none-any.whl (7.6 kB)
Saved d:\test\gits\filelock-3.0.12-py3-none-any.whl
Successfully downloaded virtualenv appdirs six distlib filelock
Although I attempted to download one package, I got these wheel files:
appdirs-1.4.4-py2.py3-none-any.whl
six-1.15.0-py2.py3-none-any.whl
distlib-0.3.1-py2.py3-none-any.whl
virtualenv-20.0.31-py2.py3-none-any.whl
filelock-3.0.12-py3-none-any.whl
Now my questions are:
- Why are there so many wheel files,and not just one file called virtualenv-20.0.31-py2.py3-none-any.whl?
- Now once I have this downloaded and stored somewhere on my computer or network location, how do I do the install?
- What happens if I just have the virtualenv-20.0.31-py2.py3-none-any.whl and no other wheel file when I attemp the install?