• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

Pepper机械人:上传python模块

用户头像
it1352
帮助1

问题说明

我正在使用 Choregraphe 辣椒机器人进行编程,并且我使用的是真正的机器人.我的问题是如何将python模块安装到机器人上?因为我需要使用 requests 包进行API调用.

I'm programming a Pepper robot with Choregraphe and I'm using a real robot. The problem I have is how can I install python modules to the robot? because I need to use the requests package to make API calls.

我一直在浏览互联网,但找不到任何解决方案.

I have been browsing in the internet but I don't found any solution.

正确答案

#1

由于安全原因,root用户访问权限已停用,因此您将无法安装机器人上的软件包. 如果您希望使用外部库,则需要将它们打包为应用程序的一部分,如下所述(来自

This will make any Python files in the "lib" directory in your application importable. Make sure to import those files in your Choregraphe package, otherwise they won't be installed.

  1. 如果我们从项目根目录的Python模块中执行此操作,则需要使用:

python_path = os.path.join(os.path.abspath(__file__), 'lib')

将"current_path/lib"添加到sys.path

to get "current_path/lib" to be added to sys.path

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfgggh
系列文章
更多 icon
同类精品
更多 icon
继续加载