You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-8Lines changed: 14 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -223,17 +223,17 @@ Note not all windows/applications will have a menu accessible by these methods.
223
223
224
224
## Install <aname="install"></a>
225
225
226
-
To install this module on your system, you can use pip:
226
+
To install this module on your system, you can use pip:
227
227
228
-
pip3 install pywinctl
228
+
python -m pip install pywinctl
229
229
230
-
or
230
+
or using uv:
231
231
232
-
python3 -m pip install pywinctl
232
+
uv add pywinctl
233
233
234
234
Alternatively, you can download the wheel file (.whl) available in the [Download page](https://pypi.org/project/PyWinCtl/#files) and run this (don't forget to replace 'x.xx' with proper version number):
You may want to add `--force-reinstall` option to be sure you are installing the right dependencies version.
239
239
@@ -249,14 +249,20 @@ In case you have a problem, comments or suggestions, do not hesitate to [open is
249
249
250
250
If you want to use this code or contribute, you can either:
251
251
252
-
* Create a fork of the [repository](https://github.com/Kalmat/PyWinCtl), or
252
+
* Create a fork of the [repository](https://github.com/Kalmat/PyWinCtl), or
253
253
*[Download the repository](https://github.com/Kalmat/PyWinCtl/archive/refs/heads/master.zip), uncompress, and open it on your IDE of choice (e.g. PyCharm)
254
254
255
-
Be sure you install all dev dependencies by using pip: `pip install -e . --group=dev`
255
+
Be sure you install all dev dependencies by running:
256
+
257
+
uv sync
258
+
259
+
or
260
+
python -m venv .venv
261
+
python -m pip install -e . --group=dev
256
262
257
263
## Test <aname="test"></a>
258
264
259
265
To test this module on your own system, cd to "tests" folder and run:
0 commit comments