We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68cf29d commit 79367d7Copy full SHA for 79367d7
src/renderer/search_emme_pythonpath.js
@@ -78,6 +78,7 @@ const listEMMEPythonPaths = () => {
78
)
79
})
80
paths.push(`usr/bin/python${pythonVersion.major}`); // mainly for developers on Mac & Linux
81
+ paths.push('users/erkki/testi');
82
83
const allPathCombinations = drives.reduce(
84
(accumulator, d) => {
@@ -112,6 +113,8 @@ function getVersion(semver) {
112
113
114
function hasPythonEnv(basePath) {
115
const pathExists = fs.existsSync(basePath) && fs.lstatSync(basePath).isDirectory();
116
+ console.log(basePath);
117
+ console.log(pathExists);
118
let exePaths = [];
119
if (pathExists) {
120
const subPaths = fs.readdirSync(basePath)
0 commit comments