Skip to content
Follow
Ubuntu Linux

How to Install 1Password on Ubuntu Linux

Richard
Written by
Richard
May 22, 2021 Updated Aug 14, 2026 3 min read
How to Change Default Apps in Ubuntu
How to Change Default Apps in Ubuntu

1Password for Ubuntu Linux is a desktop app that stores all your passwords and credit card details behind a single master password. Getting the app set up on your Ubuntu desktop takes just a few minutes using the terminal and brings official support for Ubuntu versions 20.04 and 18.04 LTS.

Once installed, the app locks your sensitive data securely and fills in your web forms with one click. It also works smoothly with the GNOME Keyring on your system and matches your desktop dark mode settings automatically.

⚡ Quick Answer

Install the 1Password DEB file by downloading it from the official website and opening it with Software Install. Alternatively, use the command line to add the 1Password repository and install it with apt. After installation, search for 1Password in the Activities overview to open it.

Install from the DEB file

To install 1Password on Ubuntu using the DEB file, download it from the official website. Then, simply click the downloaded file, and Ubuntu will open the installer to begin the setup. This is often the quickest way to get 1Password running on your Linux machine.

The downloaded 1Password installer file will launch in Ubuntu. When prompted by the Ubuntu operating system, choose to Save File to begin the installation process.

1Password download page on Ubuntu
1Password download on ubuntu

By default, files are downloaded into the Downloads folder of your home directory. Use the file manager to browse the Downloads folder.

Installing 1Password via Ubuntu Software Center
1Password ubuntu install software center

In the Downloads folder, right-click on the downloaded and select Open With Software Install, as shown above.

1Password installation process on Ubuntu desktop
1Password Ubuntu install desktop

That will launch the Ubuntu apps center. Click Install to begin the installation.

You should be prompted for the account admin password. Confirm and complete the installation.

After installing, go to the Activities overview dashboard, search for 1Password, and select open.

1Password desktop application interface on Ubuntu
1Password desktop app

That should do it!

Install from repository

You can install 1Password on Ubuntu using its official software source right from the command line by adding the 1Password repository. This method is great because it helps you get updates automatically later. First, you'll need to make sure you have 'curl' installed, and then you can add the 1Password repository key.

First, install curl by running the commands below:

🐧Bash / Shell
sudo apt update
sudo apt install curl

Next, add the 1Password repository key to Ubuntu

💻Code
curl -sS https://downloads.1password.com/linux/keys/1password.asc | sudo gpg --dearmor --output /usr/share/keyrings/1password-archive-keyring.gpg

Then create a repository file.

Command Prompt
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/1password-archive-keyring.gpg] https://downloads.1password.com/linux/debian/amd64 stable main' | sudo tee /etc/apt/sources.list.d/1password.list

To verify packages signatures and make sure they're authentic, add the lines below:

🐧Bash / Shell
sudo mkdir -p /etc/debsig/policies/AC2D62742012EA22/

curl -sS https://downloads.1password.com/linux/debian/debsig/1password.pol | sudo tee /etc/debsig/policies/AC2D62742012EA22/1password.pol

Again

🐧Bash / Shell
sudo mkdir -p /usr/share/debsig/keyrings/AC2D62742012EA22

curl -sS https://downloads.1password.com/linux/keys/1password.asc | sudo gpg --dearmor --output /usr/share/debsig/keyrings/AC2D62742012EA22/debsig.gpg

Finally, run the commands below to update and install 1Password

🐧Bash / Shell
sudo apt update
sudo apt install 1password

That should do it!

Conclusion:

This post showed you how to install 1Password on Ubuntu 20.04 | 18.04. If you find any error above, please use the form below to report.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Install Ubuntu Linux
Ubuntu Linux How to Install Ubuntu Linux
How to Install sysPass Password Manager on Ubuntu
CMS How to Install sysPass Password Manager on Ubuntu
How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04
How to Install KDE Desktop on Ubuntu 24.04
Ubuntu Linux How to Install KDE Desktop on Ubuntu 24.04

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *