Home > other >  Panda3d Modules Autocomplete in Vscode 1.68
Panda3d Modules Autocomplete in Vscode 1.68

Time:06-15

I'm sorry for my English skills.

I have a problem with importing Panda3d modules in Vscode 1.68. When I try to import modules like core, ai or ect, vscode's autocomplete doesn't recognize them.
autocomplete not working

In my photo you will realize that the classes and function does not appear in vscode's autocomplete of import statements, and panda3d.ai in this statement is white; that means that the import process is not being done correctly.

I installed panda3d by python -m pip install panda3d. My python version is 3.10.5 and the panda3d version is 1.10.11.

I want to be able to import these modules correctly and see content of these modules in vscode's autocomplete.

Please help me solve this problem.
Thank you.

CodePudding user response:

Have you installed the python extensions or maybe for some reason the extension is not working.

In order to use Panda3D in Visual Studio Code, you should get the Python extension.

  • Click on Extensions and then type in ‘python’ in the search box/.
  • Then install the first extension in the results list by clicking on the Install button.

You could reinstall panda3d if this persists.

pip install panda3d

CodePudding user response:

Please use ctrl shift P to open the command palette, then select python: select interpreter to select the correct interpreter.

Your panda3d package may be installed in a different environment. Installation information can be checked with pip show panda3d.

  • Related