You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
782 B
20 lines
782 B
@echo off
|
|
call "%~dp0env.bat"
|
|
set WINPYWORKDIR=%~dp0..\Notebooks
|
|
FOR /F "delims=" %%i IN ('cscript /nologo "%~dp0WinpythonIni.vbs"') DO set winpythontoexec=%%i
|
|
%winpythontoexec%set winpythontoexec=
|
|
|
|
rem ******************
|
|
rem missing student directory part
|
|
rem ******************
|
|
|
|
if not exist "%WINPYWORKDIR%" mkdir "%WINPYWORKDIR%"
|
|
|
|
if not exist "%HOME%\.spyder-py%WINPYVER:~0,1%" mkdir "%HOME%\.spyder-py%WINPYVER:~0,1%"
|
|
if not exist "%HOME%\.spyder-py%WINPYVER:~0,1%\workingdir" echo %HOME%\Notebooks>"%HOME%\.spyder-py%WINPYVER:~0,1%\workingdir"
|
|
|
|
rem ******* make cython use mingwpy part *******
|
|
if not exist "%WINPYDIRBASE%\settings\pydistutils.cfg" goto no_cython
|
|
if not exist "%HOME%\pydistutils.cfg" xcopy "%WINPYDIRBASE%\settings\pydistutils.cfg" "%HOME%"
|
|
:no_cython
|