2

我正在尝试将 python 包含在 openwrt 中。它没有出现在打开的 wrt menuconfig 中。在语言选项下我只能看到 Lua 而没有其他内容。检查时显示 python ... OK , perl ... OK。我错过了任何步骤吗?

4

3 回答 3

2
$ cd (to/openwrt/path)
$ scripts/feeds update
$ scripts/feeds install python
$ make menuconfig
于 2010-12-14T19:38:37.877 回答
1

首先,你需要搜索可用的python版本:

./scripts/feeds search python
./scripts/feeds install micropython
于 2014-09-06T04:49:11.340 回答
0

您需要安装您的提要,而不仅仅是更新它们。

./scripts/feeds install -a

^^^ 这对我有用,但需要一段时间才能完成。它将所有可用的包添加到 menuconfig 中——它还可以做更多的事情。

或指定您的特定包裹:

./scripts/feeds install [packages, ...]

或指定整个提要:

./scripts/feeds install -p -a myfeed
于 2015-05-06T04:09:02.187 回答