mirror of
				https://github.com/hwchase17/langchain.git
				synced 2025-10-28 06:10:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			198 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			198 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| cd ..
 | |
| python3 --version
 | |
| python3 -m venv .venv
 | |
| source .venv/bin/activate
 | |
| python3 -m pip install -r vercel_requirements.txt
 | |
| cp -r extras/* docs_skeleton/docs
 | |
| cd docs_skeleton
 | |
| nbdoc_build
 |