diff options
| author | Philipp Tanlak <philipp.tanlak@gmail.com> | 2023-11-13 22:36:15 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-13 22:36:15 +0100 |
| commit | 190056ee8d6a4eca61d92a79cc25aad645e69d4a (patch) | |
| tree | 423cb3dfb7ca92e4c1c48c1070f553bbadc4d890 /docs/getting-started/installation.md | |
| parent | eae10426cd805ecc0a0459b61639e48e6cd913ad (diff) | |
Move docs to flyscrape.com (#11)
Diffstat (limited to 'docs/getting-started/installation.md')
| -rw-r--r-- | docs/getting-started/installation.md | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md deleted file mode 100644 index d10e99c..0000000 --- a/docs/getting-started/installation.md +++ /dev/null @@ -1,45 +0,0 @@ -# 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 - -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. |