系统相关
首页 > 系统相关> > 如何在Windows中使用带代理的weka包管理器?

如何在Windows中使用带代理的weka包管理器?

作者:互联网

我正在尝试像本教程那样为weka 3.7包管理器设置代理:

https://weka.wikispaces.com/How+do+I+use+the+package+manager%3F#GUI包管理器 – 使用HTTP代理

java -Dhttp.proxyHost=some.proxy.somewhere.net -Dhttp.proxyPort=port weka.gui.GUIChooser

但它给了我这个错误:

Error: Could not find or load main class weka.gui.GUIChooser

我已经检查了路径和类路径,weka运行runweka.bat没有任何问题.

解决方法:

我在玩完路径后找到了解决方案;

knb答案是正确的,但你需要在命令中包含weka.jar.

java -cp weka.jar -Dhttp.proxyHost=some.proxy.somewhere.net -Dhttp.proxyPort=port weka.gui.GUIChooser

标签:java,proxy,classpath,weka,package
来源: https://codeday.me/bug/20190728/1559002.html