What is the difference between PyCharm Virtual Environment and Anaconda Environment?
问题 When I create a new project in PyCharm, it creates a new Virtual Environment. I have read that when I execute Python scripts, they are executed using the interpreter in this environment instead of System Environment. So, if I need to install some packages, I can install them in only this environment and not in the system environment. That's cool. I have also read about Anaconda Environment. When I create a new Anaconda environment, it creates a new one apart from system env. For my projects,