VS Code Pylance not highlighting variables and modules

2024/9/28 1:25:32

I'm using VS Code with the Python and Pylance extensions. I'm having a problem with the Pylance extension not doing syntax highlight for things like modules and my dataframe. I would expect the modules at the top to be colored green and the df variable to be colored blue.

I am using the default Dark+ Color Theme.

Here's a screenshot of my VS Code with Python and Pylance installed an enabled.

Screenshot of VS Code

  • I have tried changing my python.pythonpath setting.
  • I've added a sys.path where my packages are installed.
  • I made sure to enable editor.semanticHighlighting.enabled in the settings.
  • Pylance is in my settings.json as the language server.
  • Also tried the most recent Pylance version.
  • Tried switching to various Dark/Light themes. No change in behavior.

Here is my settings.json

{
"[python]": {"editor.semanticHighlighting.enabled": true
},
"editor.semanticHighlighting.enabled": true,
"editor.semanticTokenColorCustomizations": {},
"python.condaPath": "C:\\Anaconda3\\Scripts\\conda-script.py",
"python.defaultInterpreterPath": "C:\\Anaconda3\\python.exe",
"python.pythonPath": "C:\\Anaconda3\\python.exe",
"python.languageServer": "Pylance",
"python.terminal.activateEnvironment": true

}

This was working last month so I'm not quite sure what's going on. I'm on Windows 10, VS Code 1.47.1, with the newest extensions. Any thoughts as to why this is happening?

Answer

Looks like your Language Server does not work.

Could you add "python.languageServer": "Pylance", in the settings.json? Make sure the Pylance has been enabled. If it still does not work try to reinstall the Pylance and Python extension.

https://en.xdnf.cn/q/71398.html

Related Q&A

How to compute Spearman correlation in Tensorflow

ProblemI need to compute the Pearson and Spearman correlations, and use it as metrics in tensorflow.For Pearson, its trivial :tf.contrib.metrics.streaming_pearson_correlation(y_pred, y_true)But for Spe…

Pytorch loss is nan

Im trying to write my first neural network with pytorch. Unfortunately, I encounter a problem when I want to get the loss. The following error message: RuntimeError: Function LogSoftmaxBackward0 return…

How do you debug python code with kubernetes and skaffold?

I am currently running a django app under python3 through kubernetes by going through skaffold dev. I have hot reload working with the Python source code. Is it currently possible to do interactive deb…

Discrepancies between R optim vs Scipy optimize: Nelder-Mead

I wrote a script that I believe should produce the same results in Python and R, but they are producing very different answers. Each attempts to fit a model to simulated data by minimizing deviance usi…

C++ class not recognized by Python 3 as a module via Boost.Python Embedding

The following example from Boost.Python v1.56 shows how to embed the Python 3.4.2 interpreter into your own application. Unfortunately that example does not work out of the box on my configuration with…

Python NET call C# method which has a return value and an out parameter

Im having the following static C# methodpublic static bool TryParse (string s, out double result)which I would like to call from Python using the Python NET package.import clr from System import Double…

ValueError: Length of passed values is 7, index implies 0

I am trying to get 1minute open, high, low, close, volume values from bitmex using ccxt. everything seems to be fine however im not sure how to fix this error. I know that the index is 7 because there …

What is pythons strategy to manage allocation/freeing of large variables?

As a follow-up to this question, it appears that there are different allocation/deallocation strategies for little and big variables in (C)Python. More precisely, there seems to be a boundary in the ob…

Why is cross_val_predict so much slower than fit for KNeighborsClassifier?

Running locally on a Jupyter notebook and using the MNIST dataset (28k entries, 28x28 pixels per image, the following takes 27 seconds. from sklearn.neighbors import KNeighborsClassifierknn_clf = KNeig…

Do I need to do any text cleaning for Spacy NER?

I am new to NER and Spacy. Trying to figure out what, if any, text cleaning needs to be done. Seems like some examples Ive found trim the leading and trailing whitespace and then muck with the start/st…