NetworkTables without RoboRio: no ntcore in java.library.path.path

Was trying to test SmartDash related code from my team’s external library on a computer at home, but ended up running into this error:

Exception in thread "main" java.lang.UnsatisfiedLinkError: no ntcore in java.library.path

I’ve simplified the code I was running, and reverted to attempting to call a single method off NetworkTable to see if it made a difference.

import edu.wpi.first.wpilibj.networktables.*;
public class Main {

	public static void main(String] args)
	{
		NetworkTable.getTable("SmartDashboard");
		
	}
	
}

I’ve already built ntcore from the source, and am unsure of how to resolve this issue. I am using Eclipse.

Did you add ntcore to the classpath?

Just ended up using a NetworkTables-desktop .jar, fixed issues. Thank you for the help.