6

I have tried using PyDev Extension for VS Code. I intend to use vs code for Jython. However, I get this

from java.util import Date

Date shows unresolved error in Vs code. Can any one guide me how can Jython be setup in Vs Code?

Gama11
  • 31,714
  • 9
  • 78
  • 100
AhmedRana
  • 486
  • 9
  • 22

1 Answers1

0

I wasn't able to directly set Jython as the language in VS Code, but I got the file to run in Jython by entering jython in the VS Code terminal followed by the name of the file.

  • 2
    Running in terminal can be done even without vscode. I was looking to enable jython language features (code completion, syntax highlighting etc.) in vscode. – AhmedRana Feb 23 '22 at 20:33