Skip to content

Commit

Permalink
fix(README): Add build in readme (#234)
Browse files Browse the repository at this point in the history
Signed-off-by: Ce Gao <cegao@tensorchord.ai>
  • Loading branch information
gaocegege authored Jun 2, 2022
1 parent ebf3197 commit 8555bc6
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,19 @@ make
Checkout the [examples](./examples/mnist), and configure envd with the manifest `build.envd`:

```python
vscode(plugins=[
"ms-python.python",
])

base(os="ubuntu20.04", language="python3")
pip_package(name=[
"tensorflow",
"numpy",
])
cuda(version="11.6", cudnn="8")
shell("zsh")
jupyter(password="", port=8888)
def build():
vscode(plugins = [
"ms-python.python",
])

base(os="ubuntu20.04", language="python3")
pip_package(name = [
"tensorflow",
"numpy",
])
cuda(version="11.6", cudnn="8")
shell("zsh")
jupyter(password="", port=8888)
```

Then you can run `envd up` to create the development environment.
Expand Down

0 comments on commit 8555bc6

Please sign in to comment.