当前位置: 首页 > 工具软件 > pyOpenSSL > 使用案例 >

OpenWrt 安装pip,pyOpenSSL,setuptools,pyserial

吴胜涝
2023-12-01

OpenWrt 安装pip,pyOpenSSL,setuptools,pyserial

openwrt需要调试串口需要用到serial安装过程希望帮到大家!

1.更新源

	root@OpenWrt:~# opkg update

2.安装python

	root@OpenWrt:~# opkg install python //安装python

3.安装setuptools

官网下载: https://pypi.org/project/setuptools/0.9.8/
1.解压setuptools
2.进入setuptools目录
3.安装setuptools

	//进入setuptools解压后的目录再安装
	root@OpenWrt:~# python setup.py install 

4.安装pyOpenSSL

官网下载:https://pypi.org/project/pyOpenSSL/
1.解压pyOpenSSL
2.进入pyOpenSSL目录
3.安装pyOpenSSL

	//进入pyOpenSSL解压后的目录再安装
	root@OpenWrt:~# python setup.py install 

5.安装pip

官网下载:https://pypi.org/project/pip/#files
1.解压pip
2.进入pip目录
3.安装pip

	//进入pip解压后的目录再安装
	root@OpenWrt:~# python setup.py install 

6.使用pip安装pyserial

	//我用的阿里云的 下面附上其他的 后面你的参数一定不能少
	root@OpenWrt:~# pip install pyserial -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host=mirrors.aliyun.com

http://mirrors.aliyun.com/pypi/simple/ 阿里云
https://pypi.mirrors.ustc.edu.cn/simple/ 中国科技大学
http://pypi.douban.com/simple/ 豆瓣
https://pypi.tuna.tsinghua.edu.cn/simple/ 清华大学
http://pypi.mirrors.ustc.edu.cn/simple/ 中国科学技术大学

 类似资料: