diff --git a/src/main/java/plugins/atournay/jep/utils/PythonUtils.java b/src/main/java/plugins/atournay/jep/utils/PythonUtils.java
index 70baf2cb6f5e905ce1e5b587a9b354a6c84498af..398e589632a1baf66792286ae5d4634ae6f371f0 100644
--- a/src/main/java/plugins/atournay/jep/utils/PythonUtils.java
+++ b/src/main/java/plugins/atournay/jep/utils/PythonUtils.java
@@ -121,7 +121,7 @@ public class PythonUtils {
      */
     public String setSitePackagesDirectory() {
         String terminalLine;
-        String[] command = new String[]{JepPreferences.getInstance().getPythonExecPath(), "-c", "import sys; print([p for p in sys.path if p.endswith(\\\"site-packages\\\")])"};
+        String[] command = new String[]{JepPreferences.getInstance().getPythonExecPath(), "-c", "import sys; print([p for p in sys.path if p.endswith(\"site-packages\")])"};
         String sitePackagesPath = "";
 
         try {
@@ -136,7 +136,6 @@ public class PythonUtils {
                 String[] spList = terminalLine.replaceAll("[\\[\\]' ]", "").split(",");
 
                 for (String spPath : spList) {
-                    System.out.println(spPath);
                     if (spPath.contains("site-packages")) {
                         sitePackagesPath = spPath;
                         break;