Home > Software design >  How to activate the current venv (not by conda/venv) in terminal VSCode
How to activate the current venv (not by conda/venv) in terminal VSCode

Time:09-18

I'm using the virtual environment created from Pycharm as interpreter for my jupyter notebook project in VSCode. The venv hasn't been created by either conda or virtualenv so I cannot activate the venv in VSCode terminal as usual such as conda activate venv_name or . /Scripts/activate.bat...
Could anyone give a hand on how to activate the current venv/interpreter in terminal VSCode? Thank you.

CodePudding user response:

Based on PyCharm screenshot

There should be some script, such as activate in that location.

  • Related