Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,17 @@ For [(venv)](https://docs.python.org/3/library/venv.html), make sure you are in
For example, to create and activate a virtual environment using `venv`:

```shell
python3 -m venv venv
source venv/bin/activate
python3 -m venv .venv
source .venv/bin/activate
```

### Starting the Caikit Runtime

In one terminal, start the runtime server:

```shell
cd client
cd demo
cd server
python3 start_runtime.py
```

Expand Down Expand Up @@ -103,6 +104,7 @@ $ python3 start_runtime.py
In another terminal, run the client code to infer the model:

```shell
cd demo
cd client
python3 infer_model.py
```
Expand Down