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
David Wilson edited this page Jun 14, 2024
·
22 revisions
You can run the app as a Docker container (using docker-compose), a Pip install, or from the source directly. The advantage of using docker-compose is that you can easily enable the "Chrome WebDriver", however for most sites the built-in "Plain requests" will work (fetches only the HTML and does not run the sites Javascript)
Recommended: With Python Pip Install
1. Download and install Python
https://www.python.org/downloads/windows/ always use the official latest stable release (tested with 3.10), this installer comes with "Pip" the package manager, which will make the rest easy, it will automatically install all the related utility packages.
Choose the "Windows Installer" package
Be sure the "associate .py files with Python" option is selected
Last tested with Python 3.12.4
2. Install setuptools using the pip3 command
Open a command box (cmd command from the start-bar) and then pip3 install setuptools (this is required as of Python 3.12, as distutils is no longer shipped with Python 3.12, it has been depreciated since Python 3.10)
3. Install changedetection.io using the pip3 command
Open a command box (cmd command from the start-bar) and then pip3 install changedetection.io