Activating Conda Environments in Powershell is not supported

Activating Conda Environments in Powershell is not supported

Activation of Conda Environments in PowerShell is current not not supported.

解决办法三种:

  • Consider changing your terminal to Command Prompt.
  • Disable auto activation of environments in the terminal either as a User or Workspace setting in your settings.json file as follows:
"python.terminal.activateEnvironment": false

If debugging you optionally debug without a terminal with the following change in your launch.json:

{
    "type": "python",
    "request": "launch",
    "console": "none",
    ...
}
posted @ 2020-04-21 10:46  phoenix228  阅读(1480)  评论(0)    收藏  举报