diff options
| author | Philipp Tanlak <philipp.tanlak@gmail.com> | 2023-10-19 17:54:18 +0200 |
|---|---|---|
| committer | Philipp Tanlak <philipp.tanlak@gmail.com> | 2023-10-19 18:21:58 +0200 |
| commit | 0daefa86b400efe08245f4f2a386f7341b76b24e (patch) | |
| tree | 60d743bb9734a9d7f46701a5ac9026650a330d49 /docs/getting-started/installation.md | |
| parent | 03b3be0c3bbc70584e8988e1810dc28eacf4521f (diff) | |
docs: Add documentationv0.3.0
Diffstat (limited to 'docs/getting-started/installation.md')
| -rw-r--r-- | docs/getting-started/installation.md | 45 |
1 files changed, 45 insertions, 0 deletions
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. |