34

I have Evernote running on Windows. I access the same on my android phone with ease. I want to use the same Windows-run Evernote to use on my Ubuntu, so that the notes fed on Windows Evernote can be used on this.

Could anyone suggest me some solution? My knowledge of Ubuntu is almost nil.

pomsky
  • 68,507
richie
  • 341

9 Answers9

38

You can use Evernote In Ubuntu With Everpad.

Everpad is an Evernote tool that integrates extremely well with Unity. It implements a Unity Lens which automatically searches Evernote notes through the Dash.1

To install, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the commands below:

sudo add-apt-repository ppa:nvbn-rm/ppa
sudo apt-get update && sudo apt-get install everpad

Otherwise, you can install Wine, which allows you to run windows applications.

1Source:Everpad

Mitch
  • 107,631
13

Download the windows version of evernote, install with Wine. It runs beautifully. Fast and with no of the quirks from nevernote, nixnote and so on!

user178563
  • 131
  • 1
  • 2
3

The Linux clone is Nevernote or NixNote. If you use that you can log into Evernote. http://nevernote.sourceforge.net/index.htm

2

As said by Mitch, you can use Everpad and I personally also use it.

As an alternative, you can also use the Evernote web interface at this address: https://www.evernote.com/Home.action. This will work on all operating systemes.

Agmenor
  • 16,214
1

You may try Tusk.

Tusk is an unofficial, featureful, open source, community-driven, free Evernote app used by people in more than 130 countries.

Highlights

  • Black, Dark & Sepia Themes
  • Focus, Compact & Auto-Night Modes
  • Local & Global Customizable Keyboard Shortcuts
  • Export Notes as PDF, HTML & Markdown Files
  • Note Navigation
  • Yinxiang Support
  • Cross Platform
  • Scalable Interface
  • Update Notifications
  • Drag and Drop Files

(visit the GitHub page for more info)

Tusk is available as a snap package. So you can install it from the Software (store) application or by running the following command in Terminal

snap install tusk
pomsky
  • 68,507
1

As of 2021 there is a beta version of an official Evernote client for Linux. You have to sign up for Early Access Program on the Evernote homepage, it is free. You may not (yet) get a link to download the app, though, see comment from Davide.

Earlier it was announced that it is a deb-package. The deb-package can be installed with the Software Center, other tools or via the command line as usual.

I hope there will be soon an official version without the beta-status.

Filbuntu
  • 13,021
  • 37
  • 88
  • 112
  • To me this link about "Early Access Evernote homepage" is not working it keeps sending me to the login page, even if I'm logged in. – Davide Casiraghi Jun 01 '21 at 08:14
  • 1
    Thanks for the update @flibuntu. I joined the Eary Access Program 2 weeks ago. I just got an email that informs me that I'm part of this program but there is no way I can get any link to install it. They just say that they will let me know when some new functionalities will be released. – Davide Casiraghi Jun 02 '21 at 07:30
  • 1
    I will, and I hope too since I have also a Premium plan and I switched from mac to Linux 3 weeks ago. – Davide Casiraghi Jun 02 '21 at 07:38
  • 1
    I tried alternative clients but no one really worked. At the moment the best solution is the web client, but the experience it's quite far from the installed app client. – Davide Casiraghi Jun 02 '21 at 08:13
  • 1
    Hi @filbuntu, I joined the Evernote Beta testing program 6 months ago but I never received any link, it seems not existing nothing at the moment for Linux. I'm a bit disappointed because I', paying also for the annual plan and the web version that I use in Firefox many times stuck the CPU to 100% and I have to restart my computer. – Davide Casiraghi Dec 11 '21 at 15:54
  • 1
    Thank you to keep this post on, I think that can be useful to others and if anybody has an update please post it here! – Davide Casiraghi Dec 12 '21 at 11:49
0

Evernote is included in the source packages evernote-mode account-plugin-evernote.

Can install with,

sudo apt-get install evernote-mode account-plugin-evernote
0

You can run Evernote on Ubuntu 14.04, either using PlayOnLinux or Wine directly, everything works fine. Only installing updates is a little tricky which requires removing and installing a new version of evernote.

askb
  • 790
0

Evernote 5.8.13 working in Kubuntu 16.04 and Wine wine-1.9.18. Version 5.9 and 6.x didn't work.

  1. Install wine: If your system is 64 bit, enable 32 bit architecture (if you haven't already):

    sudo dpkg --add-architecture i386 
    

    Add the repository:

    sudo add-apt-repository ppa:wine/wine-builds
    

    Update packages:

    sudo apt-get update
    

    Then install (example for the development branch):

    sudo apt-get install --install-recommends winehq-devel
    
  2. Download and install Evernote 5.8.13

pomsky
  • 68,507