We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 009f5b3 commit b4a7269Copy full SHA for b4a7269
src/client/interpreter/configuration/interpreterSelector/commands/installPython.ts
@@ -31,7 +31,7 @@ export class InstallPythonCommand implements IExtensionSingleActivationService {
31
public async _installPython(): Promise<void> {
32
if (this.platformService.isWindows) {
33
const version = await this.platformService.getVersion();
34
- if (version.major !== 8) {
+ if (version.major > 8) {
35
// OS is not Windows 8, ms-windows-store URIs are available:
36
// https://docs.microsoft.com/en-us/windows/uwp/launch-resume/launch-store-app
37
this.browserService.launch('ms-windows-store://pdp/?ProductId=9PJPW5LDXLZ5');
0 commit comments