Home > Net >  Little Red Cross Symbol on PyCharm
Little Red Cross Symbol on PyCharm

Time:09-10

I do not know why I cannot run any project on PyCharm. Every time when I open a project, it always has the red symbol on the top, and the folder "venv" is red all the time. Also, the interpreter is wrong all the time although I watched some videos on YouTube to tackle that problem. Can someone know the system configuration? Thx[

enter image description here

CodePudding user response:

It says on the top that no virtual interpreter is active - without it PyCharm cannot create virtual environment, needed for the code to run. Try to create a new project from scratch and see what options do you have for interpreters.

CodePudding user response:

What happens if you click on:

Use C:\Users\Rickey\PycharmProjects\01_Python_Foundation\venv\Scripts\python.exe

on that little yellow bar at the top?

  • Related