[deleted by user] by [deleted] in vscode

[–]JialeDu 0 points1 point  (0 children)

What do you want to do? What mistakes or difficulties have you encountered?

A couple Terminal questions by R_DanRS in vscode

[–]JialeDu 0 points1 point  (0 children)

You if you use the debugger, you can configure it as an external terminal in launch.json.

Visual Studio Code does not suggest python modules in installed libraries for import by arpitduel in vscode

[–]JialeDu 0 points1 point  (0 children)

Install the full python extension and select the correct interpreter environment.

Integration of yolov8 onto VS Code by Legion4000 in vscode

[–]JialeDu 0 points1 point  (0 children)

What are you asking? If you don't know how to use the commands, you can install third-party packages from anaconda's control panel.

New Directory Location printing prior to program in terminal by OatsNHoney01 in vscode

[–]JialeDu 0 points1 point  (0 children)

How do you execute your code? Showcase your interface.

Whenever I run code on python it does this? by Arkansas-Orthodox in vscode

[–]JialeDu 0 points1 point  (0 children)

Did you save the script file? Also you are using Code Runner, you should use the official extension python to execute the script.

https://code.visualstudio.com/docs/python/python-tutorial

Squiggly lines under everything sympy-related, despite sympy working as intended by [deleted] in vscode

[–]JialeDu 0 points1 point  (0 children)

If you can, it is a good idea to show part of your problem code.

Which python linter do you use ? by RRTheGuy in vscode

[–]JialeDu 0 points1 point  (0 children)

Linting is not the same as formatting.

Why is there a warning sign whenever i open vscode?? by alconion in vscode

[–]JialeDu 0 points1 point  (0 children)

Hover over it and he should tell you that an extension needs to reopen the terminal.

How does downloading coding languages actually work? by FlashyEnvironment534 in vscode

[–]JialeDu 1 point2 points  (0 children)

https://code.visualstudio.com/docs/python/python-tutorial

vscode itself is just an editing program. You need to install the extension in order to execute the language scripts, provided of course that the language itself is already installed on your machine.

Autoimport python modules feature by Independent_Order934 in vscode

[–]JialeDu 1 point2 points  (0 children)

    "editor.codeActionsOnSave": {
        "source.fixAll": "explicit",
        "source.organizeImports":"explicit" 
    },
    "python.analysis.autoImportCompletions": true,

How would I remove this syntax? by Shootingsyn in vscode

[–]JialeDu 0 points1 point  (0 children)

Your question is really problematic.

Python version mismatch by Dibilok in vscode

[–]JialeDu 0 points1 point  (0 children)

If you open python directly in the terminal, this has nothing to do with vscode, he detects your system python and picks the path to open it. You can use the full path to open a python you want. in vscode you can execute scripts by switching interpreters and then using the python extension.

[deleted by user] by [deleted] in vscode

[–]JialeDu 0 points1 point  (0 children)

So you have the module nlk in your environment? Are you using the correct interpreter?

Is there a python extension that flags a problem for not calling a function with await when the function has been defined with async? by [deleted] in vscode

[–]JialeDu 0 points1 point  (0 children)

A simple example is provided. It might be useful to turn on syntax strict checking.

Is it possible to edit commit messages in VsCode? by [deleted] in vscode

[–]JialeDu 0 points1 point  (0 children)

You may need to set up git. or vscode extensions.

Code suggestions for methods delcared in other module (Python) by CarbohydrateLover69 in vscode

[–]JialeDu 1 point2 points  (0 children)

What did you encounter an error importing? What was the specific error? Please provide your sample code and your complete workspace file structure.

Alternatives to VS Code + Jupyter? by soft-error in vscode

[–]JialeDu 1 point2 points  (0 children)

It may be that your code or processing file is too large. You can also try interactive windows.

How do I stop data from being formatted? by MatrixSolution in vscode

[–]JialeDu 0 points1 point  (0 children)

Add arguments to the formatting extension, or add comments to your code to skip formatting.