Please tell me how to open the file with the extension "WHL".
Closed due to the fact that off-topic by user185447 , aleksandr barakin , Max Mikheyenko , Visman , Peter Olson Oct 21 '15 at 2:05 .
It seems that this question does not correspond to the subject of the site. Those who voted to close it indicated the following reason:
- " Questionnaires are forbidden on Stack Overflow in Russian . To get an answer, rephrase your question so that it can be given an unambiguously correct answer." - user185447, aleksandr barakin, Max Mikheyenko, Visman, Peter Olson
- @ Russian Bear, If you are given an exhaustive answer, mark it as correct (click on the check mark next to the selected answer). - Nicolas Chabanovsky ♦
|
1 answer
Given the topic of the forum, I suspect that this is a Python package. Then you can install it like this:
pip install wheel pip install some-package.whl
- I am a beginner, please explain in more detail. I just need to open the program cx_Freeze with the extension "WHL" to compile my program. - Imao
- 2The first line is needed only if you need to create your "wheels". @ Russian Bear
pip install cx_Freeze*.whl
installs the cx_Freeze package from the correspondingwhl
archive. To use the cx_Freeze program, you must first install it — thepip
program does it. In general,pip install имя-питон-пакета
имя-питон-пакета
set installsимя-питон-пакета
Python program / library c pypi.python.org .pip
program is distributed with the latest versions of Python and can be installed separately. If the words: "execute a command in the console" are not clear, then you can ask a separate question. - jfs
|