added perl for OpenMP
This commit is contained in:
parent
df79c3c6a6
commit
87c591d6b2
1 changed files with 4 additions and 2 deletions
|
@ -23,6 +23,8 @@ RUN choco install -y cmake --version 3.15.4
|
||||||
RUN choco install -y python3
|
RUN choco install -y python3
|
||||||
RUN choco install -y ninja
|
RUN choco install -y ninja
|
||||||
RUN choco install -y gnuwin
|
RUN choco install -y gnuwin
|
||||||
|
# install perl, required for OpenMP
|
||||||
|
RUN choco install -y strawberryperl
|
||||||
RUN pip install psutil
|
RUN pip install psutil
|
||||||
|
|
||||||
# configure Python encoding
|
# configure Python encoding
|
||||||
|
@ -30,7 +32,7 @@ ENV PYTHONIOENCODING=UTF-8
|
||||||
|
|
||||||
# update the path variable
|
# update the path variable
|
||||||
RUN powershell -NoProfile -InputFormat None -Command `
|
RUN powershell -NoProfile -InputFormat None -Command `
|
||||||
$path = $env:path + ';c:\Program Files (x86)\GnuWin32\bin;C:\Program Files\CMake\bin'; `
|
$path = $env:path + ';c:\Program Files (x86)\GnuWin32\bin;C:\Program Files\CMake\bin;C:\Strawberry\perl\bin'; `
|
||||||
Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\' -Name Path -Value $path
|
Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\' -Name Path -Value $path
|
||||||
|
|
||||||
# use this folder to store the worksapce'
|
# use this folder to store the worksapce'
|
||||||
|
|
Loading…
Add table
Reference in a new issue