Missing DLL while using installed package (PDAL)

I’m triyng to use the package in Pdal | com.virgis.pdal | Unity Package (UPM) | OpenUPM
I have successfully installed openupm with npm and it’s working perfectly
In the install instructions it says to have installed conda; it’s also working perfectly and in the PATH

But when I open the Unity editor it give the following exception:

at (wrapper managed-to-native) Pdal.Config.setGdalDataPath(string)
at Pdal.Config.set_GdalData (System.String value) [0x00000] in C:\Users\Sergio\Proyectos\Unity\Projects\ProjectPDAL\Library\PackageCache\com.virgis.pdal@2.3.3\Runtime\Scripts\Config.cs:129
at Pdal.Config..ctor () [0x0000c] in C:\Users\Sergio\Proyectos\Unity\Projects\ProjectPDAL\Library\PackageCache\com.virgis.pdal@2.3.3\Runtime\Scripts\Config.cs:115
at Pdal.Install.OnProjectLoadedinEditor () [0x00027] in C:\Users\Sergio\Proyectos\Unity\Projects\ProjectPDAL\Library\PackageCache\com.virgis.pdal@2.3.3\Editor\Plugins\install_scripts.cs:25
UnityEngine.Debug:Log (object)
Pdal.Install:OnProjectLoadedinEditor () (at Library/PackageCache/com.virgis.pdal@2.3.3/Editor/Plugins/install_scripts.cs:30)
UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes ()```

I suspect the problem lies in the conda requirement (specifically in that I think conda is not creating the environment maybe because ```com.virgis.conda-extensions``` is not working, but I don't know how true that thought is), but I don't know how to pinpoint what's wrong
Thank you for your time and help

I’ve found a solution to the problem
The problem is that the install script C:\Users\Sergio\Proyectos\Unity\Projects\Project PDAL\Library\PackageCache\com.virgis.pdal@2.3.3\Editor\Plugins\install_script.ps1 is not properly executing. In order to run it manually I had to get the arguments by adding a Debug.Log(compiler.StartInfo.Arguments); to the script C:\Users\Sergio\Proyectos\Unity\Projects\Project PDAL\Library\PackageCache\com.virgis.conda-extensions@1.0.2\Editor\Plugins\CondaExtensions.cs (unity may complain and undo your changes but if you change it again it should work)
I got this arguments (-ExecutionPolicy Bypass "install_script.ps1" -install pdal-c=2.1.0 -destination 'C:/Users/Sergio/Proyectos/Unity/Projects/Project PDAL/Assets\Conda' -shared_assets 'C:/Users/Sergio/Proyectos/Unity/Projects/Project PDAL/Assets/StreamingAssets') for the powershell script
Then I just run the script with the arguments like so:
PS C:\Users\Sergio\Proyectos\Unity\Projects\Project PDAL\Library\PackageCache\com.virgis.pdal@2.3.3\Editor\Plugins> .\install_script.ps1 -ExecutionPolicy Bypass "install_script.ps1" -install pdal-c=2.1.0 -destination 'C:/Users/Sergio/Proyectos/Unity/Projects/Project PDAL/Assets\Conda' -shared_assets 'C:/Users/Sergio/Proyectos/Unity/Projects/Project PDAL/Assets/StreamingAssets'