Skip to content

Commit

Permalink
Use 64-bit python (32-bit wheels not found for freetype)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikee47 committed Jan 20, 2022
1 parent 953ab1e commit a73796a
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Tools/ci/setenv.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,14 @@ if (Test-Path "$env:PICO_TOOLCHAIN_PATH" ) {
if ($IsWindows) {
$env:PATH = "C:\MinGW\msys\1.0\bin;C:\MinGW\bin;$env:PATH"

$env:PATH = "C:\Python39;C:\Python39\Scripts;$env:PATH"
$env:PYTHON = "C:\Python39\python"
$env:ESP32_PYTHON_PATH = "C:\Python39"
$env:PYTHON_PATH = "C:\Python39-x64"
if ( -not (Test-Path "$env:PYTHON_PATH") ) {
$env:PYTHON_PATH = "C:\Python39"
}

$env:PATH = "$env:PYTHON_PATH;$env:PYTHON_PATH\Scripts;$env:PATH"
$env:PYTHON = "$env:PYTHON_PATH\python"
$env:ESP32_PYTHON_PATH = "$env:PYTHON_PATH"

$env:PATH = "$env:PROGRAMFILES\CMake\bin;$env:PATH"

Expand Down

0 comments on commit a73796a

Please sign in to comment.