When we have installed PyCharm, it may report Failed to load JVM DLL\bin\server\jvm.dll error. In this tutorial, we will introduce how to fix this error.
Why does this error occur?
Because PyCharm needs Java environment supported, if you have not installed Java, this error will occur.
How to fix this Failed to load error?
You should install Java.
1.You can download a Java JDK. Then install it.
2.If you have installed java in windows system, you should add java to your system environment path.
Here is an example:
JAVA_HOME : C:\Program Files\Java\jdk1.8.0_131
Path: %JAVA_HOME%\bin;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar;%JAVA_HOME%\jre\bin
Here C:\Program Files\Java\jdk1.8.0_131 is the path of java.
Then restart your pc, open PyCharm again, you will find this error is fixed.