2021-02-21 05:11:27 +00:00
|
|
|
---
|
|
|
|
title: "Update"
|
|
|
|
date: 2020-01-01T00:00:00-00:00
|
|
|
|
draft: false
|
|
|
|
---
|
|
|
|
# Update
|
|
|
|
|
|
|
|
## Go
|
|
|
|
|
|
|
|
To update make sure to use the `-u` flag if installed via Go.
|
|
|
|
|
|
|
|
```bash
|
2021-09-30 06:17:58 +00:00
|
|
|
go get -u github.com/cointop-sh/cointop
|
2021-02-21 05:11:27 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Homebrew (macOS)
|
|
|
|
|
|
|
|
```bash
|
|
|
|
brew uninstall cointop && brew install cointop
|
|
|
|
```
|
|
|
|
|
|
|
|
## Snap (Ubuntu)
|
|
|
|
|
|
|
|
Use the `refresh` command to update snap.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
sudo snap refresh cointop
|
|
|
|
```
|
|
|
|
|
|
|
|
## Copr (Fedora)
|
|
|
|
|
|
|
|
```bash
|
|
|
|
sudo dnf update cointop
|
|
|
|
```
|
|
|
|
|
|
|
|
## AUR (Arch Linux)
|
|
|
|
|
|
|
|
```bash
|
|
|
|
yay -S cointop
|
|
|
|
```
|
|
|
|
|
|
|
|
## XBPS (Void Linux)
|
|
|
|
|
|
|
|
```bash
|
|
|
|
sudo xbps-install -Su cointop
|
|
|
|
```
|
|
|
|
|
|
|
|
## Flatpak (Linux)
|
|
|
|
|
|
|
|
```bash
|
2021-05-01 19:28:58 +00:00
|
|
|
flatpak update com.github.miguelmota.Cointop
|
2021-02-21 05:11:27 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## NixOS (Linux)
|
|
|
|
|
|
|
|
```bash
|
|
|
|
nix-env -uA nixpkgs.cointop
|
|
|
|
```
|
2021-03-27 19:52:28 +00:00
|
|
|
|
|
|
|
## AppImage (Linux)
|
|
|
|
|
|
|
|
Use the same [install](/install/#appimage-linux) instructions to update AppImage.
|