mirror of
				https://github.com/LibreTranslate/LibreTranslate.git
				synced 2025-11-04 03:27:14 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			223 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			223 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python
 | 
						|
 | 
						|
from app.init import check_and_install_models, check_and_install_transliteration
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    check_and_install_models(force=True)
 | 
						|
    check_and_install_transliteration(force=True)
 |