Formatting changes.

This commit is contained in:
Sheldon 2021-02-19 19:04:12 +08:00
parent e2d3b5f470
commit 5a63fea1f0

View File

@ -3,6 +3,7 @@
## Dependencies: ## Dependencies:
You will need python: You will need python:
[https://www.python.org/downloads/] [https://www.python.org/downloads/]
This works on python 3.9.1 This works on python 3.9.1
@ -14,13 +15,12 @@ It also needs ``PyAutoGUI`` for mouse, keyboard and GUI control, and ``Pillow``
After you have installed python, run from below in CMD and Powershell: After you have installed python, run from below in CMD and Powershell:
``` ```
py -m pip install pyautogui py -m pip install -r requirements.txt
py -m pip install Pillow
``` ```
Or alternatviely: Or alternatviely:
``` ```
py -m pip install -r requirements.txt py -m pip install pyautogui
py -m pip install Pillow
``` ```