File tree 1 file changed +7
-8
lines changed
1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
yum -y update
4
4
yum install gcc bzip2-devel libffi-devel zlib-devel wget tar gzip -y
5
- amazon-linux-extras install python3.8 -y
6
5
7
6
# install quarto
8
7
wget -q https://github.com/quarto-dev/quarto-cli/releases/download/v1.3.450/quarto-1.3.450-linux-amd64.tar.gz
@@ -11,26 +10,26 @@ export PATH=$PATH:$(pwd)/quarto-1.3.450/bin/
11
10
12
11
13
12
# setup python env
14
- python3.8 -m venv .venv
13
+ python3 -m venv .venv
15
14
source .venv/bin/activate
16
- python3.8 -m pip install --upgrade pip
17
- python3.8 -m pip install -r vercel_requirements.txt
15
+ python3 -m pip install --upgrade pip
16
+ python3 -m pip install -r vercel_requirements.txt
18
17
19
18
# autogenerate integrations tables
20
- python3.8 scripts/model_feat_table.py
19
+ python3 scripts/model_feat_table.py
21
20
22
21
# copy in external files
23
22
mkdir docs/templates
24
23
cp ../templates/docs/INDEX.md docs/templates/index.md
25
- python3.8 scripts/copy_templates.py
24
+ python3 scripts/copy_templates.py
26
25
27
26
cp ../cookbook/README.md src/pages/cookbook.mdx
28
27
29
28
wget -q https://raw.githubusercontent.com/langchain-ai/langserve/main/README.md -O docs/langserve.md
30
- python3.8 scripts/resolve_local_links.py docs/langserve.md https://github.com/langchain-ai/langserve/tree/main/
29
+ python3 scripts/resolve_local_links.py docs/langserve.md https://github.com/langchain-ai/langserve/tree/main/
31
30
32
31
wget -q https://raw.githubusercontent.com/langchain-ai/langgraph/main/README.md -O docs/langgraph.md
33
- python3.8 scripts/resolve_local_links.py docs/langgraph.md https://github.com/langchain-ai/langgraph/tree/main/
32
+ python3 scripts/resolve_local_links.py docs/langgraph.md https://github.com/langchain-ai/langgraph/tree/main/
34
33
35
34
# render
36
35
quarto render docs/
You can’t perform that action at this time.
0 commit comments