Open pboley opened 3 years ago
@pboley Many thanks for the very detailed instructions. I'm adding a link to this issue in the README so other Zenodo users may find it useful.
Use link below to download the 1.18 version. https://desktop-download.mendeley.com/download/Mendeley-Desktop-1.18-OSX-Universal.dmg
Use command below if anyone runs into an error saying "ImportError: No module named bs4"
pip install beautifulsoup4
Read below if step 5 does not work somehow. If you enable "organize my files", "sort files into subfolders", and "rename document files" in "File Orginazer", you must disable "sort files into subfolders" and "rename document files". Then use the path in "organise my files" to replace the_folder_you_store_mendeley_files in command below.
find export -type f -name "*.pdf" -exec mv {} ~/the_folder_you_store_mendeley_files \;
Thanks for the instructions! If anyone else could not get it to work exactly as described, here a few minor changes that I had to implement on macOS 11.2.1 in the stadard shell zsh:
pip install bs4
Downloads
to Downloaded
and from ;/
to \;
.
find export -type f -name "*.pdf" -exec mv {} ~/Library/Application\ Support/Mendeley\ Desktop/Downloaded \;
After this, import into Zotero using the Mendeley import option worked like a charm.
Edit: Looks like I haven't refreshed the page since @m-zheng posted the same changes. Sorry for the duplicate response. I will still leave this comment up.
Anyone know the download links for the 1.18 Ubuntu version?
Anyone know the download links for the 1.18 Ubuntu version?
So, it's February 2021 and Elsevier recently announced they will be killing the Mendeley iOS application on March 15th. I guess I am not the only one desperately looking for a way to get out of Mendeley's grasp, despite it having worked reasonably well for so many years. The good news is that the Menotexport tool still mostly works, but it required a few tricks to get it working and get my library fully into Zenodo. I provide my experience here.
Zenodo's direct import from Mendeley works fine; it will copy all the PDFs and preserve your Collection/Folder structure, but you will be missing all your annotations. Menotexport can be used to move the annotations to the PDF files directly, but when importing the .bib or .ris files created by Menotexport to Zenodo my Collection folder was lost somehow. Also, while the annotations were included in the bibliography items, the PDFs were somehow not present.
The solution presented here preserves your Collection/Folder structure and annotates all your PDFs directly in the files.
I did this in macOS using Anaconda, but it will probably work in Linux too (with adjustments to your paths)