Hi folks: Since latest Pharo version 10418 SqueakDBX, Glorp and GlorpDBX loads easily in Pharo. The Cryptography package is not need any more as MD5 was Incorporated in Pharo. <br><br>You must have Installer installed in your image. If you use a Pharo it should be already installed, however in a core image, you should install it. The easier way is to just evaluate:<br>


<br>ScriptLoader new installingInstaller.<br><br>So, this is the summary to load this packages in Pharo:<br><br>SqueakDBX: The loader will load not only SqueakDBX but also FFI.<br><br>Installer ss<br>    project: &#39;SqueakDBX&#39;;<br>


        install: &#39;SqueakDBXPharoLoader&#39;.<br><br>And then evaluate:<br><br>SqueakDBXPharoLoader loadSqueakDBX<br><br><br><br>Glorp: This will apply the path to support underscore in selectors, load Glorp, the GlorpPharoAdaptor and the native PostgreSQL driver.<br>


<br>
Installer ss<br>
    project: &#39;Glorp&#39;;<br>
        install: &#39;GlorpPharoLoader&#39;.<br>
<br>
And then evaluate:<br>
<br>
GlorpPharoLoader loadGlorpWithNativePostgreSQLDriver<br><br><br><br>GlorpDBX:   This will apply the path to support underscore in selectors, load Glorp and the GlorpPharoAdaptor. Then it will apply the path to Glorp to support different database drivers (our refactor) and will load the SqueakDBX Glorp Driver and also will load SqueakDBX and FFI. You don&#39;t nee to explicitly download SqueakDBX in this case. <br>


<br>Installer ss<br>
    project: &#39;SqueakDBX&#39;;<br>
        install: &#39;SqueakDBXPharoLoader&#39;.<br>
<br>
And then evaluate:<br>
<br>
SqueakDBXPharoLoader loadGlorpDBX<br><br><br>Best,<br><br>Mariano<br><br>