pinokiod 3.227.0 → 3.228.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kernel/bin/conda.js +3 -1
- package/package.json +1 -1
package/kernel/bin/conda.js
CHANGED
|
@@ -185,8 +185,10 @@ report_errors: false`)
|
|
|
185
185
|
}
|
|
186
186
|
}
|
|
187
187
|
this.kernel.bin.installed.conda = conda
|
|
188
|
-
this.installed.conda_versions = conda_versions
|
|
188
|
+
this.kernel.bin.installed.conda_versions = conda_versions
|
|
189
189
|
return conda_check.conda && conda_check.mamba && conda_check.sqlite
|
|
190
|
+
console.log("2 this.installed.conda", this.kernel.bin.installed.conda)
|
|
191
|
+
console.log("2 this.installed.conda_versions", this.kernel.bin.installed.conda_versions)
|
|
190
192
|
//return conda_check.conda && conda_check.mamba
|
|
191
193
|
}
|
|
192
194
|
async install(req, ondata) {
|