@@ -134,10 +134,12 @@ The metastore is based on PostgreSQL and Citus. Installing the metastore thus co
134
134
To install PostgreSQL v15 and the Citus extension v11.2, run the following commands:
135
135
136
136
``` bash
137
- curl https://install.citusdata.com/community/deb.sh | sudo bash
138
- sudo apt-get -y install postgresql-15-citus-11.2
139
- sudo pg_conftool 15 main set shared_preload_libraries citus
140
- sudo pg_conftool 15 main set listen_addresses ' *'
137
+ sudo apt install postgresql-17
138
+ curl https://install.citusdata.com/community/deb.sh > add-citus-repo.sh
139
+ sudo bash add-citus-repo.sh
140
+ sudo apt-get -y install postgresql-17-citus-13.0
141
+ sudo pg_conftool 17 main set shared_preload_libraries citus
142
+ sudo pg_conftool 17 main set listen_addresses ' *'
141
143
```
142
144
143
145
<p class =" captionFig " >
@@ -226,15 +228,15 @@ The simulation system consists of a set of Python libraries and a set of configu
226
228
To install the simulation system, the Python libraries need to be installed and
227
229
the configuration files need to be inserted into the metastore.
228
230
229
- If you do not have Python >3.9 in your base environment, start with installing Python 3.9 by running the commands:
231
+ If you do not have Python >3.9 in your base environment, start with installing Python 3.11 by running the commands:
230
232
231
233
``` bash
232
- conda create -n py39 python=3.9
233
- conda activate py39 # alternatively, "source activate py39" for old versions of conda
234
+ conda create -n py311 python=3.11
235
+ conda activate py311 # alternatively, "source activate py39" for old versions of conda
234
236
```
235
237
236
238
<p class =" captionFig " >
237
- Listing 24: Command to install Python 3.9 using Anaconda.
239
+ Listing 24: Command to install Python 3.11 using Anaconda.
238
240
</p >
239
241
240
242
The simulation system includes 17 Python libraries:
0 commit comments