而在VS代码终端中,'exit‘命令或'ctrl + d’组合会直接关闭终端,而我只是想停用pipenv,有没有办法这样做?
发布于 2020-12-25 18:04:02
我尝试了deactivate
和exit
,但它们都不适合我。
使用shift+cmd+P
可以很容易地更改环境和解释器。请参考VS code documentation。
发布于 2020-11-13 00:47:40
下面的命令帮助我在vscode中退出pipenv shell:
deactivate
发布于 2020-11-20 20:14:30
如果使用pipenv shell
进入virtualenv,请使用exit
命令退出virtualenv。
请不要使用deactivate
,因为它的行为将与explained by [ButtaKnife]不同
https://stackoverflow.com/questions/60931919
复制相似问题