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?