Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation


WebChecker

Project Setup

This project uses a virtual environment to manage dependencies. The setup process included:

  1. Creating a virtual environment:

    python3 -m venv .venv
  2. Activating the virtual environment:

    • On macOS/Linux:
      source .venv/bin/activate
    • On Windows:
      .venv\Scripts\activate
  3. Installing required dependencies:

    pip install -r requirements.txt

Challenges Faced

  1. Missing openpyxl module

    • Error:
      ModuleNotFoundError: No module named 'openpyxl'
    • Solution: Installed openpyxl using:
      pip install openpyxl
  2. Git push rejected due to remote updates

    • Error:
      ! [rejected] main -> main (fetch first)
      error: failed to push some refs
    • Solution: Pulled the latest changes first:
      git pull --rebase origin main
    • Then successfully pushed the code:
      git push origin main

How to Run the Script

Ensure the virtual environment is activated, then run:

python script.py

Created with ❤️ by Redvey


About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages