Skip to content

Commit fab96ff

Browse files
authored
Update readme to include a supported versions
1 parent 54f1adb commit fab96ff

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

packages/google-cloud-ndb/README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,30 @@ Learn how to use the `ndb` library by visiting the Google Cloud Platform
1414
[0]: https://cloud.google.com/datastore
1515
[1]: https://cloud.google.com/appengine
1616
[2]: https://cloud.google.com/appengine/docs/python/ndb/
17+
18+
## Installation
19+
20+
Install this library in a virtualenv using pip. virtualenv is a tool to create isolated Python environments. The basic problem it addresses is one of dependencies and versions, and indirectly permissions.
21+
22+
With virtualenv, it's possible to install this library without needing system install permissions, and without clashing with the installed system dependencies.
23+
24+
### Supported Python Versions
25+
Python >= 3.6
26+
27+
As this package is designed to work in the [AppEngine runtime](https://cloud.google.com/appengine/docs/python/) Python 3.6+ are supported.
28+
29+
### Mac/Linux
30+
```
31+
pip install virtualenv
32+
virtualenv <your-env>
33+
source <your-env>/bin/activate
34+
<your-env>/bin/pip install google-cloud-ndb
35+
```
36+
37+
### Windows
38+
```
39+
pip install virtualenv
40+
virtualenv <your-env>
41+
<your-env>\Scripts\activate
42+
<your-env>\Scripts\pip.exe install google-cloud-ndb
43+
```

0 commit comments

Comments
 (0)