diff --git a/src/client/interpreter/locators/services/pipEnvService.ts b/src/client/interpreter/locators/services/pipEnvService.ts index f511dede8302..738eba8f605b 100644 --- a/src/client/interpreter/locators/services/pipEnvService.ts +++ b/src/client/interpreter/locators/services/pipEnvService.ts @@ -69,7 +69,7 @@ export class PipEnvService extends CacheableLocatorService { private async getInterpreterPathFromPipenv(cwd: string): Promise { // Quick check before actually running pipenv - if (!await this.fs.fileExistsAsync(path.join(cwd, 'pipfile'))) { + if (!await this.fs.fileExistsAsync(path.join(cwd, 'Pipfile'))) { return; } const venvFolder = await this.invokePipenv('--venv', cwd);