使用 pyclips 并导入 Clips 作为 python 模块

发布于 2024-11-09 00:50:23 字数 234 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

中二柚 2024-11-16 00:50:23
PYTHONPATH="/Library/Python/2.7/site-packages/clips/"
export PYTHONPATH
PYTHONPATH="/Library/Python/2.7/site-packages/clips/"
export PYTHONPATH
美羊羊 2024-11-16 00:50:23

您无法双击 setup.py 文件。
首先,更改当前目录以放置 setup.py 文件。
第二次使用命令setup.py install

你做了所有的事情,没关系。

e.g: 

C:\Windows\System32>F:

F:\>cd F:\Downloads\pyclips-1.0.7.348\pyclips

F:\Downloads\pyclips-1.0.7.348\pyclips>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.

e.g: 

C:\Windows\System32>F:

F:\>cd F:\Downloads\pyclips-1.0.7.348\pyclips

F:\Downloads\pyclips-1.0.7.348\pyclips>setup.py install
我只土不豪 2024-11-16 00:50:23

构建 CLIPSSrc 包后,请按照 Mark 的回答进行操作。

如果在后续的 python 提示符中运行“导入剪辑”时仍然抛出相同的错误,则意味着剪辑模块无法构建或剪辑模块不在 python 路径中。

您可以通过以下方式将 Clips 模块放入 python 路径中:

import sys
sys.path.append('C:\PATH\TO\clips\module\clips') # Whatever path the clips module is

现在,“导入剪辑”应该可以工作。

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:

import sys
sys.path.append('C:\PATH\TO\clips\module\clips') # Whatever path the clips module is

Now, 'import clips' should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文