単純なダブルクリックでホイールファイルをインストールできるようにするには、次のいずれかを実行します。
1)管理者権限でコマンドラインで2つのコマンドを実行します。
assoc .whl=pythonwheel
ftype pythonwheel=cmd /c pip.exe install "%1" ^& pause
2)または、wheel.bat
ファイルにコピーして、プロパティの[管理者として実行]チェックボックスで実行することもできます。
PS pip.exeはPATHにあると想定されています。
更新:
(1)これらは1行で組み合わせることができます。
assoc .whl=pythonwheel& ftype pythonwheel=cmd /c pip.exe install -U "%1" ^& pause
(2).batファイルの構文は少し異なります。
assoc .whl=pythonwheel& ftype pythonwheel=cmd /c pip.exe install -U "%%1" ^& pause
また、その出力をより詳細にすることができます。
@assoc .whl=pythonwheel|| echo Run me with administrator rights! && pause && exit 1
@ftype pythonwheel=cmd /c pip.exe install -U "%%1" ^& pause || echo Installation error && pause && exit 1
@echo Installation successfull & pause
詳細については、私のブログ投稿を参照してください。