When you try to install Codecraft software, you may encounter this error as shown in below picture:
What to do when Codecraft interface is occupied? - 图1

Cause:

This error appears due to communication interface used by Codecraft software got occupied by other software(s) in your computer.

Solution:

1、Shut down other unrelated software, then re-install Codecraft.
2、Restart your computer, then re-install Codecraft.
3、If above methods do not work, try: Press windows+R and open Command, run“cmd”command.
What to do when Codecraft interface is occupied? - 图2
Find the process number based on the faulty interface number.
What to do when Codecraft interface is occupied? - 图3
Type:netstat -ano|findstr "interface number"。For instance, you are looking for number 8080 interface, then type:netstat -ano|findstr 8080and you will find the process number PID(Number in the last line,in the example is 3824)
What to do when Codecraft interface is occupied? - 图4
Lastly, we will terminate the process that’s been occupying our interface. Type:taskkill /f /t /pid "PID number you found".In our example is:taskkill /f /t /pid 3824,and the 8080 interface will be freed. Now try to re-install Codecraft.