I’m running Gramps 5.2 on MacOS as a bundled install (.dmg)
The add-on GrampsWebSync uses keyring if installed.
Unfortunately keyring is missing.
Is there any way to install this module - a dirty hack is ok for me.
No, this just describes how to use keychain in python.
The GampsWebSync already has the code implemented, however the problem is the statement “import keyring” which returns an error because the module doesn’t exists in the installation. If ‘pip’ had been part of the Gramps package for MacOS, but pip is also missing.
prompted perplexity with : “As an expert in installing software for MacOS and the keyring software for use in python ; a 2015 posting suggested sudo easy_install keyring … what is a modern method”
If pip is not installed on your Mac, you have several options to install it:
Use the ensurepip module (for Python 3.4+):
Open Terminal and run:
bash
python3 -m ensurepip
This will install pip without requiring an internet connection1.
2. Install via Homebrew:
If you have Homebrew installed, you can install Python (which includes pip) by running:
bash
brew install python
After installation, run:
bash
brew unlink python && brew link python
to ensure pip is in your path15.
3. Use the get-pip.py script:
Download the script and run it:
Do not use the HomeBrew Python with Gramps. It is missing some locale entry points that Gramps relies on. 6.0.0 rc1 on Mac - #3 by lsc
You can get ahead of the missing packages by installing for the local user with pip (pip3 install --user <package>). Cleaner than dumping into the system installation and does not require sudo.
What I do when the Gramps dmg does not have a package I need is the following hack:
install using pip into the OS and then copy the installed folder (and all new dependencies) into EITHER the gramplet folder or Gramps.app/Contents/Resources/lib/python3.11
And cannot sys.path return different data if they have minimal Python bundled with Python application (like Gramps) and a more expansive developer environment installed?
One problem I have experienced was that pip was installing GEDCOMX_v1 lib (needed by the FamilySearch addons by @jmichault ) to the general Python evironment and the Requires was evidently checking the Gramps bundled Python. It did not recognize the prerequisite was there until installing with the bundled pip in the Gramps path while in that location.
So knowing the preferred path for the bundled Python lib folder seems to be important. And checking ‘sys.path’ with a script from the command line was giving the other path.