Reputation: 175
I have downloaded a PyCharm 2021.3 on Windows 10, and when I want to configure a python interpreter for the project, I don't have any options except . When I try to do it with the menu ctrl+Al+s python via python interpreter, I also see no available options. When I run code, it returns the first occurred exception, ModuleNotFoundError. I have python version 3.9.9 and conda installed, and they both are working perfectly fine via command prompt and Jupyter Notebook. That's how it looks: no interpreter via python interpreter menu
no interpreter in edit configurations window
Upvotes: 0
Views: 263
Reputation: 175
For me, the following worked:
Then I had an option to edit configurations and select python interpreter.
Upvotes: 1
Reputation: 158
JetBrains has really good docomentation in terms of using their software. Check out this official guide on how to setup a Conda interpreter https://www.jetbrains.com/help/pycharm/conda-support-creating-conda-virtual-environment.html
Upvotes: 0