Which way Leiningen cannot find italics? (IntelliJ Clojure IDE)

I am testing a Cursive, Clojure IDE on top of IntelliJ. The Leiningen console works, but it prints a "path not found" error.

enter image description here

I cannot understand what he cannot find. However, Leininen works. Any idea how I can understand that he cannot find and fix?

I am on a 64-bit version of Windows 8.1 using IntelliJ 14.0.2 and Cursive 0.1.43.

+6
source share
1 answer

I could not reproduce this problem using IntelliJ 14.0.2 (Community Ed.) + Cursive 0.1.43. My IntelliJ Leiningen conclusion:

C:\ProgramData\chocolatey\bin\lein.bat version Leiningen 2.5.0 on Java 1.8.0_25 Java HotSpot(TM) 64-Bit Server VM 

You can try using Process Monitor to find out which file it is trying to access.

Configure it only for "Show file system activity", exclude any Result = SUCCESS entries and try again. You will still receive many events, but I hope if you apply more filters, you can determine which file it is trying to access.

Another thing: do any anti-virus / malware programs work? How about if you try to disable it?

+2
source

Source: https://habr.com/ru/post/980449/


All Articles