You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by mm...@apache.org on 2022/06/03 15:34:44 UTC

[pulsar] branch master updated: [docs] Update pulsar-client-cpp/README.md instructions to cover python3 (#15923)

This is an automated email from the ASF dual-hosted git repository.

mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 733cb9e1192 [docs] Update pulsar-client-cpp/README.md instructions to cover python3 (#15923)
733cb9e1192 is described below

commit 733cb9e1192b5750fbd1ba01103727ebb54f9b42
Author: Lari Hotari <lh...@users.noreply.github.com>
AuthorDate: Fri Jun 3 18:34:38 2022 +0300

    [docs] Update pulsar-client-cpp/README.md instructions to cover python3 (#15923)
    
    - installing python-setuptools would install python 2.7. The correct
      package is python3-setuptools
---
 pulsar-client-cpp/README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pulsar-client-cpp/README.md b/pulsar-client-cpp/README.md
index 5c5330e37b3..d06071ee262 100644
--- a/pulsar-client-cpp/README.md
+++ b/pulsar-client-cpp/README.md
@@ -25,7 +25,7 @@
 - [Requirements](#requirements)
 - [Platforms](#platforms)
 - [Compilation](#compilation)
-	- [Compile on Ubuntu Server 16.04](#compile-on-ubuntu-server-1604)
+	- [Compile on Ubuntu Server 20.04](#compile-on-ubuntu-server-2004)
 	- [Compile on Mac OS X](#compile-on-mac-os-x)
 	- [Compile on Windows (Visual Studio)](#compile-on-windows)
 - [Tests](#tests)
@@ -87,14 +87,14 @@ Run unit tests:
 ./docker-tests.sh
 ```
 
-### Compile on Ubuntu Server 16.04
+### Compile on Ubuntu Server 20.04
 
 #### Install all dependencies:
 
 ```shell
 apt-get install -y g++ cmake libssl-dev libcurl4-openssl-dev liblog4cxx-dev \
                 libprotobuf-dev libboost-all-dev  libgtest-dev google-mock \
-                protobuf-compiler python-setuptools
+                protobuf-compiler python3-setuptools
 ```
 
 #### Compile and install Google Test: