Getting started with 1Password for your growing team, or refining your setup? Our Secured Success quickstart guide is for you.
Forum Discussion
Former Member
2 years agoNeed help with mrc-converter-suite-2024-03-31
When I try to execute the command in terminal perl convert.pl -v bitwarden ~/Desktop/pm_export.json , it returns the following error
`an't locate Date/Calc.pm in @INC (you may need to install the...
MrC
2 years agoSuper Contributor
Former Member
It appears you have MacPorts installed, and therefore are using the MacPorts version of Perl (due to your PATH having /opt/local/bin before /usr/bin). The converter suite assumes usage of the macOS installed version of Perl. Force the conversion to use the macOS-installed Perl:
/usr/bin/perl convert.pl -v bitwarden ~/Desktop/pm_export.json
Alternatively, you can install the required modules in MacPorts (e.g. sudo port install p5-date-calc
). There may be others required too (I don't maintain a list of these modules, and install them as required.)