Skip to content

Commit f6dde8a

Browse files
committed
Add script for running scripts to install in the local environment.
1 parent 403d144 commit f6dde8a

File tree

1 file changed

+91
-0
lines changed

1 file changed

+91
-0
lines changed

install/local_install.ipynb

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": null,
6+
"id": "7684717c-85a6-49f8-a05b-402e711aa0d6",
7+
"metadata": {},
8+
"outputs": [],
9+
"source": [
10+
"import os"
11+
]
12+
},
13+
{
14+
"cell_type": "code",
15+
"execution_count": null,
16+
"id": "066a7c96-a62d-46db-96a0-ffde7f1c064b",
17+
"metadata": {},
18+
"outputs": [],
19+
"source": [
20+
"source_path = os.path.join(os.path.expanduser(\"~\"), \"SIPS_SPSS-v02.56.00\")\n",
21+
"install_path = \"/tmp/pge\""
22+
]
23+
},
24+
{
25+
"cell_type": "code",
26+
"execution_count": null,
27+
"id": "5393d4db-1e86-481b-9f18-04ebf2177fca",
28+
"metadata": {},
29+
"outputs": [],
30+
"source": [
31+
"binary_path = os.path.join(install_path, \"bin\")\n",
32+
"config_path = os.path.join(install_path, \"config\")"
33+
]
34+
},
35+
{
36+
"cell_type": "code",
37+
"execution_count": null,
38+
"id": "1afe09dc-d993-4a43-81e2-7f634132f52c",
39+
"metadata": {
40+
"tags": []
41+
},
42+
"outputs": [],
43+
"source": [
44+
"!./build_common.sh $source_path"
45+
]
46+
},
47+
{
48+
"cell_type": "code",
49+
"execution_count": null,
50+
"id": "91a4c18f-1c8e-4bf6-97f6-e50e4f8507a3",
51+
"metadata": {
52+
"tags": []
53+
},
54+
"outputs": [],
55+
"source": [
56+
"!./build_l1a.sh $source_path $binary_path"
57+
]
58+
},
59+
{
60+
"cell_type": "code",
61+
"execution_count": null,
62+
"id": "7a9d7c5b-4c16-4597-9093-87367c7e3675",
63+
"metadata": {},
64+
"outputs": [],
65+
"source": [
66+
"!./create_l1a_static_config.sh $source_path $config_path"
67+
]
68+
}
69+
],
70+
"metadata": {
71+
"kernelspec": {
72+
"display_name": "Python 3 (ipykernel)",
73+
"language": "python",
74+
"name": "python3"
75+
},
76+
"language_info": {
77+
"codemirror_mode": {
78+
"name": "ipython",
79+
"version": 3
80+
},
81+
"file_extension": ".py",
82+
"mimetype": "text/x-python",
83+
"name": "python",
84+
"nbconvert_exporter": "python",
85+
"pygments_lexer": "ipython3",
86+
"version": "3.10.5"
87+
}
88+
},
89+
"nbformat": 4,
90+
"nbformat_minor": 5
91+
}

0 commit comments

Comments
 (0)