我想使用项目https://github.com/klon/ucrdtw所以我下载了它,构建它并使用以下命令将其安装到我的conda环境中:
class AppRun extends JavaExec {
private boolean withDebug
@Option(option = "with-debug", description = "enable debug for the process. ")
public void setDebugMode(boolean debug) {
this.withDebug = debug
}
public boolean getDebugMode() {
return this.withDebug
}
}
task run(type: AppRun) {
}
安装过程放置文件
git clone https://github.com/klon/ucrdtw.git
cd ucrdtw
source activate mycondaenvironment
make
python setup.py install
进入我的conda _ucrdtw.cpython-36m-x86_64-linux-gnu.so
ucrdtw-0.0.0-py3.6.egg-info
目录。
存在一个非常小的自述文件,但我不知道可用的参数以及我应该如何使用它们。我怎么能找到它?