How to activate virutalenv with cursor?

I’m new to cursor and relative new programing. I want cursor to acticvate virtual env, so I’ve pressed: control + k, and entered: “activate virtual env” , it generates this code:

.\venv\Scripts\activate

or \venv\Scripts\activate.ps1.

Either way I get error:

\venv\Scripts\activate : El término ‘\venv\Scripts\activate’ no se reconoce como nombre de un cmdlet, función, archivo de script o programa ejecutable. Compruebe si
escribió correctamente el nombre o, si incluyó una ruta de acceso, compruebe que dicha ruta es correcta e inténtelo de nuevo.
En línea: 1 Carácter: 1

  • \venv\Scripts\activate
  •   + CategoryInfo          : ObjectNotFound: (\venv\Scripts\activate:String) [], CommandNotFoundException
      + FullyQualifiedErrorId : CommandNotFoundException
    
    
    

You only asked it to activate your virtual environment. It does not exist yet. When you change your promt to “Setup and activate a virtual environment”, it should give you this:

python -m venv venv && venv\Scripts\activate

First command is setting up a virtual environment called “venv”, second one is activating it.

If a terminal command is not giving you the results you expect, you can always ask the AI chat.