I am using IntelliJ for a remote python project using SSH and SFTP. The remote mapped path may be in some wrong encoding since I got the file path output like:
<11865f38-410b-476a-a511-3ae9d9f69e67>/code/sklearn-model/kmeans.py
,
which should be /home/pengwending/code/sklearn-model/kmeans.py
(I copied its path from the Remote Host sidebar). So I run kmeans.py
and got the error:
can't open file '<11865f38-410b-476a-a511-3ae9d9f69e67>/code/sklearn-model/kmeans.py': [Errno 2] No such file or directory
How should I fix this?