您好,登錄后才能下訂單哦!
小編給大家分享一下openwrt安裝python的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
首先配置opkg源。
# 備份初始conf mv /etc/opkg.conf /etc/opkg.conf.bak # 新建配置 vim /etc/opkg.conf # 添加如下內(nèi)容: dest root / dest ram /tmp lists_dir ext /var/opkg-lists option overlay_root /overlay # notice dest usb /mnt/sdb1/opkg arch all 100 arch ramips_24kec 200 arch ramips 300 arch mips 400 arch unkown 500 src/gz barrier_breaker_base http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/base src/gz barrier_breaker_luci http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/luci src/gz barrier_breaker_management http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/management src/gz barrier_breaker_oldpackages http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/ oldpackages src/gz barrier_breaker_packages http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/packages src/gz barrier_breaker_routing http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/routing src/gz barrier_breaker_telephony http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/telephony # wq保存 # 執(zhí)行升級 opkg update
安裝Python
需要注意的是,小米路由器的可用空間不多,但Python的安裝會占用挺大的空間,所以我們指定opkg將程序安裝在U盤或硬盤上。
這時我們回到剛才的配置文件里,找到notice,這里的dest usb /mnt/sdb1/opkg就是指定變量usb為外置存儲路徑/mnt/sdb1/opkg。外置存儲的路徑可以用df -h查看。
以后我們使用opkg -d usb install xxx即可將程序安裝至/mnt/sdb1/opkg。
# 先需要安裝libc,需要下載下來安裝 ## 建立文件夾 mkdir -p /mnt/sdb1/opkg/src cd /mnt/sdb1/opkg/src wget http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/base/libc_0.9.33.2-1_ramips_24kec.ipk ## 安裝libc,最好安裝到根下 opkg install libc_0.9.33.2-1_ramips_24kec.ipk # 接著安裝Python opkg -d usb install libreadline opkg -d usb install python opkg -d usb install python-json opkg -d usb install python-curl opkg -d usb install python-openssl # 路徑 export PATH=$PATH:/mnt/sdb1/opkg/usr/bin echo 'export PATH=$PATH:/mnt/sdb1/opkg/usr/bin' >> /etc/profile # 別名 echo "alias opintall='opkg -d usb install'" >> /etc/profile
看完了這篇文章,相信你對openwrt安裝python的方法有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。