We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bae280 commit ff4989dCopy full SHA for ff4989d
src/dac/_cli.py
@@ -58,6 +58,21 @@ def pack(
58
"""
59
Build a Data as Code (DaC) python wheel after verifying that data
60
can be loaded and that data respect the provided schema.
61
+
62
+ This command should be used in a python environment that contains
63
+ all the dependencies needed to load the data and to validate the schema.
64
65
+ This means that before running this command, you should run something like:
66
67
+ ```sh
68
69
+ python -m venv venv && . venv/bin/activate
70
+ python -m pip install dac -r requirements.txt
71
72
+ ```
73
74
+ where the `requirements.txt` file is the same that you are going to provide
75
+ in the `--dependencies` argument.
76
77
py_api_pack(
78
config=PackConfig(
0 commit comments