无法在Python中导入owlready

时间:2017-03-09 13:26:35

标签: python owl owlready

我正在尝试在Python中使用owlready库。我从链接(https://pypi.python.org/pypi/Owlready)下载了该文件,但是当我导入owlready时,我收到以下错误:

>>> from owlready import *
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'owlready'

我试过跑:

pip install owlready

我收到错误:

error: could not create '/usr/local/lib/python3.4/dist-packages/owlready': Permission denied

2 个答案:

答案 0 :(得分:2)

尝试使用pip安装它。

运行命令pip install <module name here>来执行此操作。如果您使用的是python3,请运行pip3 install <module name here>

如果这些都不起作用,您也可以尝试:

python -m pip install <module name here>

python3 -m pip install <module name here>

如果你还没有pip,你应该得到它。非常常用的python包管理器。 Here是有关如何设置工具的一些详细信息。

答案 1 :(得分:-3)

您需要安装库:

C:\PythonX.X\Scripts

    pip install owlready

Successfully installed Owlready-0.3