Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

macOS: Update install steps for #2652 #2757

Merged
merged 1 commit into from
Jun 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,25 @@ Packages and installation files are available at `Releases page <https://github.

Alternatively, you can install the app with one of the following methods:

a. On **Windows**, you can install `Chocolatey package <https://chocolatey.org/packages/copyq>`__.
b. On **OS X**, you can use `Homebrew <https://brew.sh/>`__ to install the app.
On **Windows**, you can install `Chocolatey package <https://chocolatey.org/packages/copyq>`__.

On **macOS**, you can use `Homebrew <https://brew.sh/>`__ to install the app
(also see the problem in the next section):

.. code-block:: bash

brew install --cask copyq

On **macOS**, if you encounter issue where the app does crash with a dialog
saying "CopyQ is damaged" or "CopyQ cannot be opened", you may need to run the
following commands (for details, see `issue #2652
<https://github.com/hluk/CopyQ/issues/2652>`__):

.. code-block:: bash

xattr -d com.apple.quarantine /Applications/CopyQ.app
codesign --force --deep --sign - /Applications/CopyQ.app

On Debian unstable, **Debian 10+**, **Ubuntu 18.04+** and later derivatives can
install stable version from official repositories:

Expand Down
Loading