mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-10-31 07:57:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			438 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			438 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import os
 | |
| 
 | |
| from fetch import fetch
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|     for version in ["3.4.4"]:
 | |
|         for platform in ["", ".amd64"]:
 | |
|             for extension in ["", ".asc"]:
 | |
|                 fetch(
 | |
|                     "https://www.python.org/ftp/python/%s/python-%s%s.msi%s"
 | |
|                     % (version, version, platform, extension)
 | |
|                 )
 | |
| 
 | |
|     # find pip, if it's not in the path!
 | |
|     os.system("pip install virtualenv")
 |