You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately, as of PostgreSQL 17, the Windows download from EDB described on page 5 of Chapter 1 no longer includes the Language Pack that had been part of the Stack Builder utility.
Instead, to configure Python for the exercise that uses a Python function in Chapter 17, please follow these revised steps:
Performing the custom installation and choose a directoy that's easy to remember. For example, C:\Python
Next, follow the directions on Page 6 of Chapter 1 to add that directory to the PATH and PYTHONHOME variables under System Variables Instead of adding the directory shown in the book, add the directory where you installed Python
Restart your PC for the changes to take effect.
You now should be able to create the PL/Python extension in a database by running:
CREATE EXTENSION plpython3u;
Note
You can find additional information in the directory on your PC where PostgreSQL is installed, typically C:\Program File\PostgreSQL\17\doc\installation-notes.html
The text was updated successfully, but these errors were encountered:
Unfortunately, as of PostgreSQL 17, the Windows download from EDB described on page 5 of Chapter 1 no longer includes the Language Pack that had been part of the Stack Builder utility.
Instead, to configure Python for the exercise that uses a Python function in Chapter 17, please follow these revised steps:
C:\Python
PATH
andPYTHONHOME
variables underSystem Variables
Instead of adding the directory shown in the book, add the directory where you installed PythonYou now should be able to create the
PL/Python
extension in a database by running:CREATE EXTENSION plpython3u;
Note
You can find additional information in the directory on your PC where PostgreSQL is installed, typically
C:\Program File\PostgreSQL\17\doc\installation-notes.html
The text was updated successfully, but these errors were encountered: