forked from Archives/langchain
87e502c6bc
Co-authored-by: jacoblee93 <jacoblee93@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
11 lines
191 B
Bash
Executable File
11 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd ..
|
|
python3 --version
|
|
python3 -m venv .venv
|
|
source .venv/bin/activate
|
|
python3 -m pip install -r requirements.txt
|
|
cp -r extras/* docs_skeleton/docs
|
|
cd docs_skeleton
|
|
nbdoc_build
|