Learning KeymouseGo 01 install and start up

2023年 8月 24日 66.8k 0

Introduction

KeymouseGo is a open source software based on python, which can imitate the operation on mouse and keyboard. This article will introduce how to install it and start up it on Ubuntu according to github/taojy123/KeymouseGo.

Installation

Clone the project from github and

pip install -r requirements-universal.txt
pip install pyinstaller
pyinstaller -F -w --add-data "./assets:assets" KeymouseGo.py

In this project, it uses requirements-universal.txt to configure the rely packages instead of the .toml file, which can be directly recognized by pip. It is mainly because the rely packages varies from Windows to Linux. The file used as the parameter of pip install -r has a requirement on its format. For example, the code below is the requirements-universal.txt

# Python3.10

pynput==1.7.6
pyperclip==1.8.0
pyautogui==0.9.53
future==0.18.3
PySide6==6.4.3
qt-material==2.11
loguru==0.6.0

In this file it mainly use the format

PackageName==Version

however, there are some other formats which can describe more circumstances

PackageNmae==Version1-Version2
PackageName>=Version1,

相关文章

服务器端口转发,带你了解服务器端口转发
服务器开放端口,服务器开放端口的步骤
产品推荐:7月受欢迎AI容器镜像来了,有Qwen系列大模型镜像
如何使用 WinGet 下载 Microsoft Store 应用
百度搜索:蓝易云 – 熟悉ubuntu apt-get命令详解
百度搜索:蓝易云 – 域名解析成功但ping不通解决方案

发布评论