Skip to content
This repository was archived by the owner on Mar 11, 2022. It is now read-only.

Commit 74543d1

Browse files
committed
Add source install instructions
1 parent 03cc474 commit 74543d1

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

README.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,27 @@
11
# Python User Language Support
2-
Python User Language Support for [Cloudstate](https://github.com/cloudstateio/cloudstate).
2+
Python User Language Support for [Cloudstate](https://github.com/cloudstateio/cloudstate).
3+
4+
## Installation via source
5+
6+
```
7+
> git clone https://github.com/cloudstateio/python-support.git
8+
Cloning into 'python-support'...
9+
10+
> cd python-support
11+
> python3 -m venv ./venv
12+
> source ./venv/bin/activate
13+
> python --version
14+
Python 3.7.3
15+
> pip --version
16+
> pip install -r requirements.txt
17+
```
18+
19+
### generate installer
20+
```
21+
./venv/bin/python3 setup.py bdist_wheel
22+
```
23+
24+
### local install
25+
```
26+
./venv/bin/python3 -m pip install dist/cloudstate-0.5.0-py3-none-any.whl
27+
```

0 commit comments

Comments
 (0)