mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-03 22:08:28 +00:00 
			
		
		
		
	Install and export script should work on systems without "python" executable. Closes https://github.com/espressif/esp-idf/pull/6471 Closes https://github.com/espressif/esp-idf/issues/6532 Related to https://github.com/espressif/esp-idf/issues/6421 and https://github.com/espressif/arduino-esp32/issues/4717
		
			
				
	
	
		
			20 lines
		
	
	
		
			435 B
		
	
	
	
		
			Fish
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			435 B
		
	
	
	
		
			Fish
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env fish
 | 
						|
 | 
						|
set basedir $PWD
 | 
						|
 | 
						|
set -x IDF_PATH $basedir
 | 
						|
 | 
						|
echo "Detecting the Python interpreter"
 | 
						|
source "$IDF_PATH"/tools/detect_python.fish
 | 
						|
 | 
						|
echo "Installing ESP-IDF tools"
 | 
						|
"$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install
 | 
						|
 | 
						|
echo "Installing Python environment and packages"
 | 
						|
"$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install-python-env
 | 
						|
 | 
						|
echo "All done! You can now run:"
 | 
						|
echo ""
 | 
						|
echo "  . "$basedir"/export.fish"
 | 
						|
echo ""
 |