15 lines
		
	
	
		
			488 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			488 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash -xe
 | |
| VERSION=3.8.5
 | |
| 
 | |
| wget https://www.python.org/ftp/python/$VERSION/Python-$VERSION.tgz
 | |
| tar xvzf Python-$VERSION.tgz
 | |
| cd Python-$VERSION/
 | |
| 
 | |
| ./configure --prefix=$HOME/_work/_tool/Python/$VERSION/x64/ --enable-optimizations --with-ensurepip=install
 | |
| make -j 8
 | |
| sudo make altinstall
 | |
| touch $HOME/_work/_tool/Python/$VERSION/x64.complete
 | |
| 
 | |
| ln -s $HOME/_work/_tool/Python/3.8.5/x64 $HOME/_work/_tool/Python/3/x64
 | |
| ln -s $HOME/_work/_tool/Python/3.8.5/x64 $HOME/_work/_tool/Python/3.8/x64
 | 
