From 0daefa86b400efe08245f4f2a386f7341b76b24e Mon Sep 17 00:00:00 2001 From: Philipp Tanlak Date: Thu, 19 Oct 2023 17:54:18 +0200 Subject: docs: Add documentation --- docs/getting-started/installation.md | 45 ++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 docs/getting-started/installation.md (limited to 'docs/getting-started/installation.md') diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md new file mode 100644 index 0000000..2d14b7d --- /dev/null +++ b/docs/getting-started/installation.md @@ -0,0 +1,45 @@ +# Installation + +Welcome to flyscrape! This section will guide you through the installation process, ensuring you have everything you need to start using this powerful web scraping tool. + +## Prerequisites + +Before installing flyscrape, make sure you have the following prerequisites: + +1. **Go Programming Language**: flyscrape is built with Go, so you need to have Go installed on your system. If you don't have it installed, you can download it from the [official Go website](https://golang.org/). + +## Installing flyscrape + +Once you have Go installed, you can proceed with installing flyscrape. Follow these simple steps: + +1. **Open a Terminal**: Launch your terminal or command prompt. + +2. **Install flyscrape**: Run the following command to install flyscrape using Go's package manager: + + ```bash + go install github.com/philippta/flyscrape/cmd/flyscrape@latest + ``` + + This command will download the latest version of flyscrape and install it on your system. + +3. **Verify Installation**: To confirm that flyscrape has been successfully installed, you can run the following command: + + ```bash + flyscrape + ``` + + If the installation was successful, this command will display the help text of flyscrape. + +## Updating flyscrape abc + +To keep your flyscrape installation up to date, you can use the following command: + +```bash +go get -u github.com/philippta/flyscrape/cmd/flyscrape@latest +``` + +This command will fetch and install the latest version of flyscrape from the GitHub repository. + +Congratulations! You've successfully installed flyscrape on your system. Now you're ready to dive into web scraping and start extracting data from websites with ease. + +Next, you can learn how to run flyscrape and start creating your scraping scripts by following the "Running flyscrape" section in the "Getting Started" category. -- cgit v1.2.3