New venv is not inheriting packages from base interpreter
This is my old python interpreter. I added a lot of stuff because I use it for a lot of stuff.

I am trying to make a new virtual environment because I don't want to add more packages to it but I also want to get the existing packages in my old interpreter. So, I made it my base interpreter and I clicked inherit global site packages but all I got from the old interpreter was numpy.

Please sign in to leave a comment.
Hi, your old interpreter is venv, you can't use it as a base interpreter (technically you can, but it's not designed for this).
If you want to transfer packages from one venv to another, you can reinstall them using the requirements file.