Ubuntu18.04 安装CNdeepdive遇到的问题记录

下载CNdeepdive:http://www.openkg.cn/tool/cn-deepdive

安装CNdeepdive 遇到的问题
1.运行install.sh
(1) 解压出错
方法:
把install.sh 代码中的tar zxvf 更改为 tar xvf


(2).curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
方法:
Answer:raw.githubusercontent.com 该网址需要fan xiang才能访问


(3)W: GPG error: http://httpredir.debian.org/debian stretch-backports InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC
E: The repository 'http://httpredir.debian.org/debian stretch-backports InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
方法:refer:http://blog.chinaunix.net/uid-26212859-id-3045854.html
#gpg --keyserver pgp.mit.edu --recv-keys 7638D0442B90D010
gpg --keyserver keyserver.ubuntu.com --recv-keys 7638D0442B90D010
gpg --armor --export 7638D0442B90D010 | apt-key add -

gpg --keyserver keyserver.ubuntu.com --recv-keys 04EE7237B7D453EC
gpg --armor --export 04EE7237B7D453EC | apt-key add -


(4)Package python-software-properties is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  software-properties-common

E: Package 'python-software-properties' has no installation candidate

方法:refer:https://packages.ubuntu.com/xenial/all/python-software-properties/download
You should be able to use any of the listed mirrors by adding a line to your /etc/apt/sources.list like this:
deb http://cz.archive.ubuntu.com/ubuntu xenial main universe

注:在后续运行过程中遇到的问题,tutorital.pdf中作者已经给出了相关说明,注意查看即可。

你可能感兴趣的:(知识图谱,关系抽取)