Signing back into the Community for the first time? You'll need to reset your password to access your account. Find out more.
Forum Discussion
lukewarm9888
11 months agoNew Contributor
Need 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
11 months agoSuper Contributor
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.)