Skip to content

Commit

Permalink
Fix studio install bits for windows users with spaces in their names
Browse files Browse the repository at this point in the history
  • Loading branch information
akenmorris committed May 8, 2023
1 parent 4851b4d commit 793926d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions install_shapeworks.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 793926d

Please sign in to comment.