Installing Comet on Windows with Clash Proxy
Run the Comet installer behind Clash for Windows by setting temporary PowerShell proxy vars and avoiding common connection pitfalls.
When running Comet behind Clash for Windows, the installer may fail to fetch dependencies. The simplest workaround is to launch PowerShell with temporary proxy variables so only the installation session is proxied.
Steps
- Open PowerShell (Admin) and export proxy variables:
$env:HTTP_PROXY = "http://127.0.0.1:7890"
$env:HTTPS_PROXY = "http://127.0.0.1:7890"
-
Run the Comet installer from the same session.
-
Clear variables after install:
Remove-Item Env:\HTTP_PROXY; Remove-Item Env:\HTTPS_PROXY
This isolates proxy effects and avoids system‑wide changes.