I apologize for the fact that my explanation was long and probably not the best of clarity, but this is the best I could do to describe my experience.
I had the same problem after the first installation, and here is how I solved it:
I noticed that there are some settings, as indicated in other answers that tell pyCharm which interpreters and environment managers should use, and I was sure that the problem was in setting these parameters, but I was not sure how, so I started Search.
Translator Setup
I more or less followed the standard guide, assuming that at some point I was using the newly created virtualenv inside my project folder. At first I received a DLL error, but when I made sure that the interpreter settings point to a valid executable.
It explains how to do this.
Environment setup
At this point, the error disappeared, but I moved on to a new error. The problem is that I could not import any module, since they were not found. This is because I was working inside the newly created virtualenv, basically an untouched installation, with no modules installed. I'm sure there are more advanced solutions (install modules in virtualenv), but I was just looking to make the code work, so I set up the environment to use my usual anaconda development environment.
For me, with conda on windows (after activating the development environment with conda activate ) then (see .... / anaconda-python-where-are-the-virtual-environment-stored for other systems). where python gives the path to the interpreter, conda info --envs gives me the existing environment that I want to use.
It fixed everything for me.
source share