envd 0.4.3__py2.py3-none-macosx_11_0_arm64.whl → 1.0.0a2__py2.py3-none-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of envd might be problematic. Click here for more details.
- {envd-0.4.3.data → envd-1.0.0a2.data}/data/bin/envd +0 -0
- {envd-0.4.3.dist-info → envd-1.0.0a2.dist-info}/METADATA +46 -36
- envd-1.0.0a2.dist-info/RECORD +6 -0
- envd-0.4.3.dist-info/RECORD +0 -6
- {envd-0.4.3.dist-info → envd-1.0.0a2.dist-info}/LICENSE +0 -0
- {envd-0.4.3.dist-info → envd-1.0.0a2.dist-info}/WHEEL +0 -0
- {envd-0.4.3.dist-info → envd-1.0.0a2.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: envd
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0a2
|
|
4
4
|
Summary: A development environment management tool for data scientists.
|
|
5
5
|
Home-page: https://github.com/tensorchord/envd
|
|
6
6
|
Author: TensorChord
|
|
@@ -56,10 +56,13 @@ Environments built with `envd` provide the following features out-of-the-box:
|
|
|
56
56
|
|
|
57
57
|
```python
|
|
58
58
|
def build():
|
|
59
|
+
base(dev=True)
|
|
60
|
+
install.conda()
|
|
61
|
+
install.python()
|
|
59
62
|
install.python_packages(name = [
|
|
60
63
|
"numpy",
|
|
61
64
|
])
|
|
62
|
-
shell("
|
|
65
|
+
shell("fish")
|
|
63
66
|
config.jupyter()
|
|
64
67
|
```
|
|
65
68
|
|
|
@@ -111,7 +114,9 @@ Forget copy-pasting Dockerfile instructions - use envd to easily build functions
|
|
|
111
114
|
envdlib = include("https://github.com/tensorchord/envdlib")
|
|
112
115
|
|
|
113
116
|
def build():
|
|
114
|
-
base(
|
|
117
|
+
base(dev=True)
|
|
118
|
+
install.conda()
|
|
119
|
+
install.python()
|
|
115
120
|
envdlib.tensorboard(host_port=8888)
|
|
116
121
|
```
|
|
117
122
|
|
|
@@ -195,13 +200,15 @@ The build manifest `build.envd` looks like:
|
|
|
195
200
|
|
|
196
201
|
```python title=build.envd
|
|
197
202
|
def build():
|
|
198
|
-
base(
|
|
203
|
+
base(dev=True)
|
|
204
|
+
install.conda()
|
|
205
|
+
install.python()
|
|
199
206
|
# Configure the pip index if needed.
|
|
200
207
|
# config.pip_index(url = "https://pypi.tuna.tsinghua.edu.cn/simple")
|
|
201
208
|
install.python_packages(name = [
|
|
202
209
|
"numpy",
|
|
203
210
|
])
|
|
204
|
-
shell("
|
|
211
|
+
shell("fish")
|
|
205
212
|
```
|
|
206
213
|
|
|
207
214
|
*Note that we use Python here as an example but please check out examples for other languages such as R and Julia [here](https://github.com/tensorchord/envd/tree/main/examples).*
|
|
@@ -214,29 +221,34 @@ cd envd-quick-start && envd up
|
|
|
214
221
|
|
|
215
222
|
```bash
|
|
216
223
|
$ cd envd-quick-start && envd up
|
|
217
|
-
[+] ⌚ parse build.envd and download/cache dependencies
|
|
218
|
-
|
|
219
|
-
[
|
|
220
|
-
=>
|
|
221
|
-
=>
|
|
222
|
-
=>
|
|
223
|
-
|
|
224
|
-
=> pip install numpy
|
|
225
|
-
=>
|
|
226
|
-
=>
|
|
227
|
-
=>
|
|
228
|
-
=>
|
|
229
|
-
=>
|
|
230
|
-
=> install
|
|
231
|
-
|
|
232
|
-
=>
|
|
233
|
-
=>
|
|
234
|
-
=> exporting
|
|
235
|
-
=> =>
|
|
236
|
-
=> =>
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
224
|
+
[+] ⌚ parse build.envd and download/cache dependencies 6.2s ✅ (finished)
|
|
225
|
+
[+] build envd environment 19.0s (47/47) FINISHED
|
|
226
|
+
=> CACHED [internal] setting pip cache mount permissions 0.0s
|
|
227
|
+
=> docker-image://docker.io/tensorchord/envd-sshd-from-scratch:v0.4.3 2.3s
|
|
228
|
+
=> => resolve docker.io/tensorchord/envd-sshd-from-scratch:v0.4.3 2.3s
|
|
229
|
+
=> docker-image://docker.io/library/ubuntu:22.04 0.0s
|
|
230
|
+
......
|
|
231
|
+
=> [internal] pip install numpy 2.5s
|
|
232
|
+
=> CACHED [internal] download fish shell 0.0s
|
|
233
|
+
=> [internal] configure user permissions for /opt/conda 1.0s
|
|
234
|
+
=> [internal] create dir for ssh key 0.5s
|
|
235
|
+
=> [internal] install ssh keys 0.2s
|
|
236
|
+
=> [internal] copy fish shell from the builder image 0.2s
|
|
237
|
+
=> [internal] install fish shell 0.5s
|
|
238
|
+
......
|
|
239
|
+
=> [internal] create work dir: /home/envd/envd-quick-start 0.2s
|
|
240
|
+
=> exporting to image 7.7s
|
|
241
|
+
=> => exporting layers 7.7s
|
|
242
|
+
=> => writing image sha256:464a0c12759d3d1732404f217d5c6e06d0ee4890cccd66391a608daf2bd314e4 0.0s
|
|
243
|
+
=> => naming to docker.io/library/envd-quick-start:dev 0.0s
|
|
244
|
+
------
|
|
245
|
+
> importing cache manifest from docker.io/tensorchord/python-cache:envd-v0.4.3:
|
|
246
|
+
------
|
|
247
|
+
⣽ [5/5] attach the environment [2s]
|
|
248
|
+
Welcome to fish, the friendly interactive shell
|
|
249
|
+
Type help for instructions on how to use fish
|
|
250
|
+
|
|
251
|
+
envd-quick-start on git master [!] via Py v3.11.11 via 🅒 envd as sudo
|
|
240
252
|
⬢ [envd]❯ # You are in the container-based environment!
|
|
241
253
|
```
|
|
242
254
|
|
|
@@ -246,13 +258,15 @@ Please edit the `build.envd` to enable jupyter notebook:
|
|
|
246
258
|
|
|
247
259
|
```python title=build.envd
|
|
248
260
|
def build():
|
|
249
|
-
base(
|
|
261
|
+
base(dev=True)
|
|
262
|
+
install.conda()
|
|
263
|
+
install.python()
|
|
250
264
|
# Configure the pip index if needed.
|
|
251
265
|
# config.pip_index(url = "https://pypi.tuna.tsinghua.edu.cn/simple")
|
|
252
266
|
install.python_packages(name = [
|
|
253
267
|
"numpy",
|
|
254
268
|
])
|
|
255
|
-
shell("
|
|
269
|
+
shell("fish")
|
|
256
270
|
config.jupyter()
|
|
257
271
|
```
|
|
258
272
|
|
|
@@ -268,7 +282,7 @@ envd-quick-start http://localhost:42779 envd-quick-start.envd /home/g
|
|
|
268
282
|
## Difference between v0 and v1
|
|
269
283
|
|
|
270
284
|
> [!NOTE]
|
|
271
|
-
>
|
|
285
|
+
> Start from `envd v1.0`, `v1` syntax is the default syntax for `build.envd` file.
|
|
272
286
|
|
|
273
287
|
| Features | v0 | v1 |
|
|
274
288
|
| --- | --- | --- |
|
|
@@ -278,11 +292,7 @@ envd-quick-start http://localhost:42779 envd-quick-start.envd /home/g
|
|
|
278
292
|
| support serving | ⚠️ | ✅ |
|
|
279
293
|
| support custom base image | ⚠️ | ✅ |
|
|
280
294
|
| support installing multiple languages | ⚠️ | ✅ |
|
|
281
|
-
| support `moby` builder | ❌ | ✅
|
|
282
|
-
|
|
283
|
-
> [!NOTE]
|
|
284
|
-
> <a name="v1-moby">(a)</a> To use the `moby` builder, you will need to create a new context with `envd context create --name moby-test --builder moby-worker --use`.
|
|
285
|
-
> For more information about the `moby` builder, check the [issue-1693](https://github.com/tensorchord/envd/issues/1693).
|
|
295
|
+
| support `moby` builder | ❌ | ✅ |
|
|
286
296
|
|
|
287
297
|
> [!IMPORTANT]
|
|
288
298
|
> For more details, check the [upgrade to v1](https://envd.tensorchord.ai/guide/v1.html) doc.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
envd-1.0.0a2.dist-info/RECORD,,
|
|
2
|
+
envd-1.0.0a2.dist-info/LICENSE,sha256=eyTBZk0yxn_VnN5cGn9-0nJCXtMCubZ2iFQZCEODWxk,11341
|
|
3
|
+
envd-1.0.0a2.dist-info/WHEEL,sha256=9hJ1FuEZbvzXm6h3sCN_KazEtrTFzJoM157UZyUxwA0,138
|
|
4
|
+
envd-1.0.0a2.dist-info/top_level.txt,sha256=1OHC94DZ5nAbn2I1jx5cCPXDMEO0oyGjaWD3VA5sri0,5
|
|
5
|
+
envd-1.0.0a2.dist-info/METADATA,sha256=mjA9hr-w4B2-HrNjSe7bMrfmtNBjoEkDTVUzNVrqLcA,39355
|
|
6
|
+
envd-1.0.0a2.data/data/bin/envd,sha256=YXuMVQTQFa8UL-was_wYjz_OXU3Oeh_yZCEFNfYzhLQ,80894498
|
envd-0.4.3.dist-info/RECORD
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
envd-0.4.3.data/data/bin/envd,sha256=FaPjNja_XvbivWo-k6g2xiSt87s3BFesVvuq4KtLvxo,81738370
|
|
2
|
-
envd-0.4.3.dist-info/RECORD,,
|
|
3
|
-
envd-0.4.3.dist-info/LICENSE,sha256=eyTBZk0yxn_VnN5cGn9-0nJCXtMCubZ2iFQZCEODWxk,11341
|
|
4
|
-
envd-0.4.3.dist-info/WHEEL,sha256=9hJ1FuEZbvzXm6h3sCN_KazEtrTFzJoM157UZyUxwA0,138
|
|
5
|
-
envd-0.4.3.dist-info/top_level.txt,sha256=1OHC94DZ5nAbn2I1jx5cCPXDMEO0oyGjaWD3VA5sri0,5
|
|
6
|
-
envd-0.4.3.dist-info/METADATA,sha256=KdHN5UyYfe1ED1dhg3aBoxwYo_39ChN4lkLLvzEBYH0,39186
|
|
File without changes
|
|
File without changes
|
|
File without changes
|