Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
qim3d
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
QIM
Tools
qim3d
Merge requests
!123
Fixed windows installation for itk vtk viewer
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Fixed windows installation for itk vtk viewer
improve-viz-fix
into
main
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Fixed windows installation for itk vtk viewer
s233039
requested to merge
improve-viz-fix
into
main
9 months ago
Overview
0
Commits
1
Pipelines
0
Changes
1
0
0
Merge request reports
Viewing commit
3f82f62d
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
3f82f62d
Fixed windows installation
· 3f82f62d
David Grundfest
authored
9 months ago
qim3d/viz/itk_vtk_viewer/installation.py
+
1
−
1
View file @ 3f82f62d
Edit in single-file editor
Open in Web IDE
Show full file
@@ -128,7 +128,7 @@ class Installer:
output
=
subprocess
.
run
(
command
,
shell
=
True
,
capture_output
=
True
)
def
_windows
():
subprocess
.
run
([
"
powershell.exe
"
,
SOURCE_FNM
,
F
"
fnm use --fnm-dir
{
self
.
dir
}
--install-if-missing 22
"
])
subprocess
.
run
([
"
powershell.exe
"
,
F
'
$env:XDG_DATA_HOME =
"
{
self
.
dir
}
"
;
'
,
SOURCE_FNM
,
F
"
fnm use --fnm-dir
{
self
.
dir
}
--install-if-missing 22
"
])
print
(
F
'
Installing node.js...
'
)
run_for_platform
(
linux_func
=
_linux
,
windows_func
=
_windows
,
macos_func
=
_linux
)
Loading