nodeenv icon indicating copy to clipboard operation
nodeenv copied to clipboard

Having python venv and nodeenv running at the same time

Open qomhmd opened this issue 1 year ago • 0 comments

Using cross-platform Powershell on Windows, I am creating and activating both a python venv and a node env using these commands:

python -m venv .venv
.venv\Scripts\activate
pip install nodeenv
nodeenv .nenv
.nenv\Scripts\activate

After activating node env, the python venv is not active anymore. How can I keep both activated, so my python packages go to venv and my nodejs packages go to nenv?

qomhmd avatar Oct 31 '24 20:10 qomhmd