Using pip tool we can install Python package Wheel. If you already have that .whl wheel file, that can also install in python using pip.
CASE 1:
If you have the .whl wheel file means, use following code,pip install C:/any-dir/wheel_file.whl
here, C:/any-dir/ is path of that wheel_file.whl file.
CASE 2:
If you want discover, download and install a Python package means,pip install project_name
here, project_name is any of Python package. Use wheel word for install wheel file. For example,pip install wheel
The following two tabs change content below.
Latest posts by KarSho (see all)
- Step to Install JOOMLA in WAMP Localhost - March 30, 2020
- ‘Your Projects’ Links Not working in WAMP Server - March 29, 2020