| | 53 | * python-gdcm |
| | 54 | - The python-gdcm !PyPi package allows ChimeraX to read 16-bit lossless jpeg dicom data, ticket #1745 |
| | 55 | - Should we put it into ChimeraX distributions, or on Toolshed, or leave it out? |
| | 56 | - We know of only one case where someone tried to open this format 3 years ago (Meghan McCarthy). |
| | 57 | - The python-gdcm package is pretty large, 27 Mbytes compressed on Windows, making it more than 10% of our Windows ChimeraX size. |
| | 58 | - We could put python-gdcm on Toolshed. This is done for the realsense module to avoid increasing distribution size for a very rare feature. |
| | 59 | - Decided to just leave it out of distribution and not on Toolshed until a user expresses a need for it. |
| | 60 | |
| | 61 | * Pip install command for ChimeraX |
| | 62 | - Would be useful for ChimeraX plugin developers to be able to pip install packages the need with a simple ChimeraX command., ticket #4762 |
| | 63 | - Unfortunately the standard python pip module does not have a public API. |
| | 64 | - Could use subprocess ("python -m pip install --user ...") to install via a ChimeraX command. |
| | 65 | - There is a PyPi module pip-install (maybe others too) that provide a pip API that could be used. |
| | 66 | - Would be |