mirror of
https://codeberg.org/privacy1st/exec-notify
synced 2024-12-22 23:16:04 +01:00
update Readme
This commit is contained in:
parent
f261db3bf3
commit
8bd499c91f
31
README.md
31
README.md
@ -20,25 +20,26 @@ source ~/execNotify/venv/bin/activate
|
||||
# echo "VIRTUAL_ENV=${VIRTUAL_ENV}"
|
||||
```
|
||||
|
||||
Option A: Install the module from TestPyPI:
|
||||
And choose one source of installation:
|
||||
|
||||
```shell
|
||||
# Install from git URL
|
||||
python3 -m pip install git+https://codeberg.org/privacy1st/execNotify
|
||||
|
||||
# Install from local directory
|
||||
python3 -m pip install ~/Downloads/git/execNotify/
|
||||
|
||||
# Install the module from TestPyPI
|
||||
python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps --upgrade de.p1st.exec-notify
|
||||
```
|
||||
|
||||
The above command uses the parameter `--no-deps`:
|
||||
Note about usage of TestPyPI and `--no-deps`:
|
||||
|
||||
> Since TestPyPI doesn’t have the same packages as the live PyPI, it’s possible that attempting
|
||||
> to install dependencies may fail or install something unexpected. While this package
|
||||
> doesn’t have any dependencies, it’s a good practice to avoid installing dependencies when
|
||||
> using TestPyPI.
|
||||
|
||||
Option B: Install from local directory
|
||||
|
||||
```shell
|
||||
python3 -m pip install ~/Downloads/git/execNotify/
|
||||
```
|
||||
|
||||
(Optionally) list installed modules:
|
||||
|
||||
```shell
|
||||
@ -47,11 +48,7 @@ pip list
|
||||
|
||||
## Installation - global
|
||||
|
||||
Requires `pip` (e.g. `pacman -S --needed python-pip`):
|
||||
|
||||
```shell
|
||||
sudo python3 -m pip install --upgrade --index-url https://test.pypi.org/simple/ --no-deps de.p1st.exec-notify
|
||||
```
|
||||
Requires `pip` (e.g. `pacman -S --needed python-pip`).
|
||||
|
||||
Note: Make sure that pip is up-to-date and matches your python version:
|
||||
|
||||
@ -63,6 +60,14 @@ pip --version
|
||||
#=> pip 20.3.4 from /usr/lib/python3.10/site-packages/pip (python 3.10)
|
||||
```
|
||||
|
||||
Then install with one of the following options:
|
||||
|
||||
```shell
|
||||
sudo python3 -m pip install --upgrade git+https://codeberg.org/privacy1st/execNotify
|
||||
sudo python3 -m pip install --upgrade ~/Downloads/git/execNotify/
|
||||
sudo python3 -m pip install --upgrade --index-url https://test.pypi.org/simple/ --no-deps de.p1st.exec-notify
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
||||
Create configuration file `/etc/execNotify/cfg.ini`:
|
||||
|
@ -1,5 +1,3 @@
|
||||
[DEFAULT]
|
||||
|
||||
[mail]
|
||||
host = smtp.example.com
|
||||
port = 465
|
||||
|
Loading…
Reference in New Issue
Block a user