After some issues adding my Conda env to PyCharm (Pro) I realized that my Conda env did not include an interpreter. My env was created with
conda create --name <name>
In PyCharm, I need to add interpreter and Conda executable for existing environments. I understand by this that I should create my environment with
conda create --name <name> python
Then I wonder, why would I create a Conda env without an interpreter if I cannot use it in my tool? Just trying to figure out how I should work with Conda.