Update README.md

This commit is contained in:
Stefano Marinelli 2023-11-07 21:05:06 +01:00 committed by GitHub
parent 6765287e70
commit ad8f8be049
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,40 +67,28 @@ Ensure you have Python installed on your machine. NotiMail is written in Python,
If you've hosted `NotiMail` on a platform like GitHub, provide the link and the command. For this example, I'll use a placeholder link:
bash
`git clone https://github.com/draga79/NotiMail.git`
If you're not using version control, ensure users have a link to download the `.zip` or `.tar.gz` of the project and then extract it.
**2. Navigate to the NotiMail Directory:**
bash
`cd NotiMail`
**3. Set Up a Virtual Environment (Optional but Recommended):**
A virtual environment ensures that the dependencies for the project don't interfere with your other Python projects or system libraries.
bash
`python -m venv notimail-env`
Activate the virtual environment:
- On macOS and Linux:
bash
- `source notimail-env/bin/activate`
- On Windows:
bash
- `.\notimail-env\Scripts\activate`
@ -108,8 +96,6 @@ Activate the virtual environment:
Install the necessary Python libraries using `pip`, for example:
bash
`pip install requests`
**5. Configure NotiMail:**
@ -118,8 +104,6 @@ Open the `config.ini` file in a text editor. From version 0.9, you can configure
**6. Run NotiMail:**
bash
`python NotiMail.py`
----------