Hide
Hide

Reputation: 3317

VSCode pipenv already activated issue

I worked python project with pipenv and edit my code with VSCode.

When I activate pipenv in my terminal, it works perfectly like this.

enter image description here

But When I activate in VSCode terminal, it throws error -> already activated

enter image description here

Of course I deactivate pipenv at my terminal before activate in vscode terminal.

How can I solve this issue?

Upvotes: 2

Views: 790

Answers (1)

vintprox
vintprox

Reputation: 1141

If you have Python extension activated in VSC, familiarize yourself with this pull request. They added support for pipenv, that's why the shell is active there already.

Upvotes: 1

Related Questions