There is definitely something wrong with how paths are handled. I managed to solve it in the launcher, but today I hit the issue with python too and I am a bit afraid much more things got broken, waiting to be discovered.
In Linux, I managed to fix this by rolling back to version 0.45.14 (I had the same issues even with 0.45.15, not only 0.46). I also used the script kindly provided by @Kirai and made a few modifications to make it work in Wayland (added the --ozone-platform=wayland option). For details see Installing command line launcher on Linux - #6 by Kirai
This bugs also effects all my extensions for linting, which makes the IDE unusable for me right now.
Ruff or Pylint throw errors like
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'
I worked on this for hours and somehow found a work around for me.
It’s happening because Cursor is forcing its own Python environment.
I simply added this to the bottom of my ~/.bashrc and restarted Cursor:
export PYTHONHOME=""
export PYTHONPATH=""
After doing that it worked with no errors, including showing proper linting.
How I figured it out:
When I unset the values manually in the terminal (in cursor), I could then run the file:
unset PYTHONHOME
unset PYTHONPATH
python3 main.py (or clicking the run button)
However, if I restarted Cursor or opened a new terminal and tried running the file again, it would show the same error:
Python path configuration:
PYTHONHOME = '/tmp/.mount_CursorXomwZv/usr/'
PYTHONPATH = '/tmp/.mount_CursorXomwZv/usr/share/pyshared/:'
program name = 'python3'
isolated = 0
environment = 1
user site = 1
import site = 1
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 0x000073646c2c9740 (most recent call first):
<no Python frame>
So instead of having to unset the two values manually every time I ran my .py file, I just made it permanent by forcing those values to be unset by adding it to my ~/.bashrc and wallah!