Cant open .md file

Hello.

Cant open README.md.

Enter, double click on file - no reaction at all.

Manjaro linux, KDE, pycharm 2023.1 CE

0
5 comments

Hi, could you please provide a screenshot of the file in the IDE that you cannot open, and also logs from **Help | Collect Logs and Diagnostic Data** after reproducing the issue? 

You can use uploading service at https://uploads.jetbrains.com/ , and provide upload ID in your reply. 

0

There is files

Upload id: 2023_04_26_w1pLhdnVDvJE4Kmv5TkS9E (files: pycharm-logs-20230426-214719371237832954288812.zip, Screenshot_20230426_214535.png)

0
Thank you, 
You are running the IDE under a third-party JDK. Please try running under the bundled JBR:

https://intellij-support.jetbrains.com/hc/en-us/articles/206544879-Selecting-the-JDK-version-the-IDE-will-run-under
2

Thank you.

It help.

But PyCharm don see path in ~/.config/JetBrains/PyCharmCE2023.1/pycharm.jdk, so I changed in /bin/pycharm JDK path manualy.

 

And i have one more question: In /bin/pycharm there is path to JFX module.

Do i need to instal another and change it instead of openjfx?

#!/bin/sh

if [ -z "$PYCHARM_JDK" ] ; then
PYCHARM_JDK="/home/uuser/.jbr/jbrsdk_jcef-17.0.6-linux-x64-b829.9"
fi
# open-jfx location that should match the JDK version
if [ -z "$PYCHARM_JFX" ] ; then
  PYCHARM_JFX="/usr/lib/jvm/java-17-openjfx/"
fi
# classpath according to defined JDK/JFX
if [ -z "$PYCHARM_CLASSPATH" ] ; then
  PYCHARM_CLASSPATH="${PYCHARM_JDK}/lib/*:${PYCHARM_JFX}/lib/*"
fi

exec env PYCHARM_JDK="$PYCHARM_JDK" PYCHARM_CLASSPATH="$PYCHARM_CLASSPATH" /usr/share/pycharm/bin/pycharm.sh "$@"
0
The bundled Java runtime (JBR) includes all the necessary modules that were tested with the IDE. It's not recommended using third-party modules.
0

Please sign in to leave a comment.