Python is rendered not working under Cursor IDE

OS: Linux Kubuntu 22.04

Whenever I try to run any Python script from inside Cursor IDE I get an error like:

$ python graph1.py 
Python path configuration:
  PYTHONHOME = '/tmp/.mount_cursorTJgEON/usr/'
  PYTHONPATH = '/tmp/.mount_cursorTJgEON/usr/share/pyshared/:'
  program name = '/usr/bin/python3'
  isolated = 0
  environment = 1
  user site = 1
  import site = 1
  sys._base_executable = '/usr/bin/python3'
  sys.base_prefix = '/tmp/.mount_cursorTJgEON/usr'
  sys.base_exec_prefix = '/tmp/.mount_cursorTJgEON/usr'
  sys.platlibdir = 'lib'
  sys.executable = '/usr/bin/python3'
  sys.prefix = '/tmp/.mount_cursorTJgEON/usr'
  sys.exec_prefix = '/tmp/.mount_cursorTJgEON/usr'
  sys.path = [
    '/tmp/.mount_cursorTJgEON/usr/share/pyshared/',
    '',
    '/tmp/.mount_cursorTJgEON/usr/lib/python310.zip',
    '/tmp/.mount_cursorTJgEON/usr/lib/python3.10',
    '/tmp/.mount_cursorTJgEON/usr/lib/python3.10/lib-dynload',
  ]
Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
Python runtime state: core initialized
ModuleNotFoundError: No module named 'encodings'

Current thread 0x00007e2b7c002740 (most recent call first):
  <no Python frame>

As you see, Cursor overrides python env vars to its own. But it makes python not working.

It turns out I was working with an outdated version 0.45 of Cursor IDE. Surprisingly, it didn’t notify me about the availability of a newer version. I accidentally discovered version 0.46. After updating, I noticed that the issue with Python has been resolved.