使用 pyclips 并导入 Clips 作为 python 模块
我正在使用 pyclips 生成我的系统的事实和规则..我已经下载了安装 pyclips 的所有要求,其中包括一个 Clips 目录,该目录包含在 python 代码中使用剪辑所需的 python 文件..
但是当我编写“导入剪辑”时 ”错误“没有名为 Clips 的模块”出现!!
所以请有人帮助我正确导入吗?
”或“导入pyclips.clips 将库文件夹放入 c:/ 中的 python 文件夹中
am using pyclips to generate the facts a nd rules of my system .. i have download every requirements for installing pyclips which include a clips directory that contatins the python files necessary for using clips inside the python code ..
but when i write " import clips " or " import pyclips.clips" the error " " no module named clips " appear!!
so please clould any one help me to make the import correct?
just i wanna say that i put the folder pyclips insode the libraries folder in the python folder in c:/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您无法双击 setup.py 文件。
首先,更改当前目录以放置 setup.py 文件。
第二次使用命令setup.py install。
你做了所有的事情,没关系。
You can't double click the setup.py file.
First you change current dir to place which the setup.py file.
Second use command setup.py install.
You do about all, that's ok.
构建 CLIPSSrc 包后,请按照 Mark 的回答进行操作。
如果在后续的 python 提示符中运行“导入剪辑”时仍然抛出相同的错误,则意味着剪辑模块无法构建或剪辑模块不在 python 路径中。
您可以通过以下方式将 Clips 模块放入 python 路径中:
现在,“导入剪辑”应该可以工作。
After the CLIPSSrc package is built, follow Mark's answer.
If on running 'import clips' in a subsequent python prompt still throws the same error that means either the clips module failed to build or the clips module is not in the python path.
You can put the clips module in in the python path by:
Now, 'import clips' should work.