Commit cd04e9b7 authored by jesse's avatar jesse

rename python README, and fix markdown in java and python respectively

parent bf055926
Protocol Buffers - Google's data interchange format Protocol Buffers - Google's data interchange format
===================================================
[![Build Status](https://travis-ci.org/google/protobuf.svg?branch=master)](https://travis-ci.org/google/protobuf)
Copyright 2008 Google Inc. Copyright 2008 Google Inc.
This directory contains the Java Protocol Buffers runtime library. This directory contains the Java Protocol Buffers runtime library.
...@@ -55,12 +59,14 @@ E.g. to install the lite version of the jar, you would run: ...@@ -55,12 +59,14 @@ E.g. to install the lite version of the jar, you would run:
The resulting artifact has the 'lite' classifier. To reference it The resulting artifact has the 'lite' classifier. To reference it
for dependency resolution, you would specify it as: for dependency resolution, you would specify it as:
```
<dependency> <dependency>
<groupId>com.google.protobuf</groupId> <groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId> <artifactId>protobuf-java</artifactId>
<version>${version}</version> <version>${version}</version>
<classifier>lite</classifier> <classifier>lite</classifier>
</dependency> </dependency>
```
Installation - Without Maven Installation - Without Maven
============================ ============================
......
Protocol Buffers - Google's data interchange format Protocol Buffers - Google's data interchange format
===================================================
[![Build Status](https://travis-ci.org/google/protobuf.svg?branch=master)](https://travis-ci.org/google/protobuf)
Copyright 2008 Google Inc. Copyright 2008 Google Inc.
This directory contains the Python Protocol Buffers runtime library. This directory contains the Python Protocol Buffers runtime library.
...@@ -66,7 +70,9 @@ Installation ...@@ -66,7 +70,9 @@ Installation
5) Install: 5) Install:
$ python setup.py install $ python setup.py install
or: or:
$ python setup.py install --cpp_implementation $ python setup.py install --cpp_implementation
This step may require superuser privileges. This step may require superuser privileges.
...@@ -103,4 +109,3 @@ change the default so that C++ implementation is used whenever it is available. ...@@ -103,4 +109,3 @@ change the default so that C++ implementation is used whenever it is available.
It is strongly recommended to run `python setup.py test` after setting the It is strongly recommended to run `python setup.py test` after setting the
variable to "cpp", so the tests will be against C++ implemented Python variable to "cpp", so the tests will be against C++ implemented Python
messages. messages.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment