From 793926d8791e2da490d7d6558fa84175e508a8bd Mon Sep 17 00:00:00 2001 From: Alan Morris Date: Mon, 8 May 2023 13:40:55 -0600 Subject: [PATCH] Fix studio install bits for windows users with spaces in their names --- install_shapeworks.bat | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install_shapeworks.bat b/install_shapeworks.bat index c88bead90a..46d95e3058 100644 --- a/install_shapeworks.bat +++ b/install_shapeworks.bat @@ -55,8 +55,8 @@ REM install the shapeworks python module and conda [de]activate scripts call .\Installation\install_python_module.bat call .\Installation\conda_env_setup.bat -md %USERPROFILE%\.shapeworks -python -c "import sys; print('\n'.join(sys.path))" > %USERPROFILE%\.shapeworks\python_path_6.4.txt -python -c "import sys; print(sys.prefix)" > %USERPROFILE%\.shapeworks\python_home_6.4.txt -echo %PATH% > %USERPROFILE%\.shapeworks\path_6.4.txt +md "%USERPROFILE%\.shapeworks" +python -c "import sys; print('\n'.join(sys.path))" > "%USERPROFILE%\.shapeworks\python_path_6.4.txt" +python -c "import sys; print(sys.prefix)" > "%USERPROFILE%\.shapeworks\python_home_6.4.txt" +echo %PATH% > "%USERPROFILE%\.shapeworks\path_6.4.txt" call conda info