Comment installer le fichier whl dans Python
#first get the path to the file of .whl file
#then just install it from pip
pip install <path to the file>
#let path be C:/somedir/somefile.whl
pip install C:/somedir/somefile.whl
raj_singh010