mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-03 16:41:44 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			884 B
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			884 B
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
#!/usr/bin/env pwsh
 | 
						|
$IDF_PATH = $PSScriptRoot
 | 
						|
 | 
						|
$TARGETS = (python "$IDF_PATH/tools/install_util.py" extract targets "$args")
 | 
						|
 | 
						|
Write-Output "Installing ESP-IDF tools"
 | 
						|
$proces_tools = Start-Process -Wait -PassThru -NoNewWindow -FilePath "python" -Args "`"$IDF_PATH/tools/idf_tools.py`" install --targets=${TARGETS}"
 | 
						|
$exit_code_tools = $proces_tools.ExitCode
 | 
						|
if ($exit_code_tools -ne 0) { exit $exit_code_tools }  # if error
 | 
						|
 | 
						|
$FEATURES = (python "$IDF_PATH/tools/install_util.py" extract features "$args")
 | 
						|
 | 
						|
Write-Output "Setting up Python environment"
 | 
						|
$proces_py_env = Start-Process -Wait -PassThru  -NoNewWindow -FilePath "python" -Args "`"$IDF_PATH/tools/idf_tools.py`" install-python-env --features=${FEATURES}"
 | 
						|
$exit_code_py_env = $proces_py_env.ExitCode
 | 
						|
if ($exit_code_py_env -ne 0) { exit $exit_code_py_env } # if error
 | 
						|
 | 
						|
 | 
						|
Write-Output "
 | 
						|
All done! You can now run:
 | 
						|
    export.ps1
 | 
						|
"
 |