Updated README

This commit is contained in:
2024-01-26 19:57:12 -05:00
parent a2e327a29a
commit 589e9a7079

View File

@@ -1,6 +1,6 @@
# webcrawler # webcrawler
## Instructions to run ## Instructions to Run
1. Clone the repository 1. Clone the repository
``` ```
git clone https://github.com/AmanTahiliani/webcrawler.git git clone https://github.com/AmanTahiliani/webcrawler.git
@@ -9,15 +9,25 @@ git clone https://github.com/AmanTahiliani/webcrawler.git
``` ```
cd webcrawler cd webcrawler
``` ```
3. Install the requirements 3. Create a virtual environment
```
python3 -m venv venv
```
4. Activate the virtual environment
```
source venv/bin/activate
```
5. Install the requirements
``` ```
pip install -r requirements.txt pip install -r requirements.txt
``` ```
4. Run the shell script 6. Run the shell script
``` ```
./amantahiliani.sh ./amantahiliani.sh
``` ```
## Usage
Note: If you get a permission denied error, run the following command Note: If you get a permission denied error, run the following command
``` ```
chmod +x amantahiliani.sh chmod +x amantahiliani.sh