Neutree / COMTool

Cross platform communicate assistant(Serial/network/terminal tool)( 跨平台 串口调试助手 网络调试助手 终端工具 linux windows mac Raspberry Pi )支持插件和二次开发
https://neucrack.com/p/186
GNU Lesser General Public License v3.0
1.85k stars 338 forks source link

树莓派4B现在无法安装 #39

Open 1278132270 opened 3 years ago

1278132270 commented 3 years ago

根据README.MD输入 sudo pip3 install dist/COMTool-*.*.*-py3-none-any.whl ,显示文件不存在。 dist中文件实际是COMTool-1.7.9-py2-none-any.whl。 根据文件名改为输入sudo pip3 install COMTool-1.7.9-py2-none-any.whl . 显示COMTool-1.7.9-py2-none-any.whl is not supported wheel on this platform

今年一月份是可以安装并正常使用的。

Neutree commented 3 years ago

用 python3 构建并安装

taotieren commented 2 years ago

参考这里的打包处理方式:https://github.com/Neutree/COMTool/issues/44

2liangturing commented 1 year ago

我最后启动“”comtool“”,显示“-bash: comtool: command not found”,为啥呢?我在COMTool没看到有comtool命名的文件(个人不是很懂Python和树莓派)

Neutree commented 1 year ago

@2liangturing 使用 pip 安装成功才能使用这个命令,可能你没有安装成功? 树莓派装pyqt5貌似很容易出问题的

BunnySakura commented 7 months ago

如果使用pip安装成功但是执行comtool显示找不到命令,可以直接执行:

python -m COMTool.Main

为了方便使用,可以写一个别名用来执行comtool。这里以Zsh举例,Bash差不多:

nano ~/.zshrc # 编辑zsh配置

在最后一行添加:

alias comtool='python -m COMTool.Main' # 指定别名comtool