skip to Main Content

I’m not able to import the modules which are already i have installed
Give me any suggestion to resolve this problems

I’m not able to import the modules in Vs code
I’m try to import the module vortex-api but it couldn’t import
I have try this
Pip install vortex-api still i’m not able to import this

2

Answers


  1. Have you restarted your VS?

    Run pip list or pip freeze to check if vortex-api is listed. Or just reconfirm you are typing this pip install vortex-api correctly.

    Login or Signup to reply.
  2. It seems to me that Python was not correctly installed. If using Windows, on installing Python, make sure you add Python to PATH on your environment variables. Python and pip and packages will be global and hence VSCode will pick all installed packages automatically.

    This can help: https://www.digitalocean.com/community/tutorials/install-python-windows-10

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search