'Ursina isnt reconised by Visual Studio Code

So I have done pip install ursina in the command prompt but when I try write some code in visual studio code (like, from ursina import *) an error appears saying;

No module named 'ursina'

Can someone please help.



Solution 1:[1]

A common reason for this problem is that you have multiple versions of Python installed. Remove the old/unneeded ones. Then, in a command prompt, navigate to the Python installation location using the command where python, and then into the scripts folder and run pip install ursina

Solution 2:[2]

IT HAS H use this code;

from ursina import *

app= Ursina()

(code)

app.run()

use capital u in ursina

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Robert Long
Solution 2 Coop Good