Dana Merrick
03/04/2021, 8:35 PMprefect
installed on the custom image, but when the container starts up and tries to run prefect execute flow-run
, I get this error:
Error: No such command 'execute'.
Any idea what I am missing? I installed prefect via conda btwZanie
03/04/2021, 8:40 PMprefect diagnostics
and prefect execute
what happens?Dana Merrick
03/04/2021, 8:49 PMError: No such command 'diagnostics'.
# prefect
Usage: prefect [OPTIONS] COMMAND [ARGS]...
The Prefect CLI
Options:
--help Show this message and exit.
Commands:
create-environment Call the setup and execute functions for a given...
make-user-config Generates a user configuration file
run Run a flow from an environment file.
Zanie
03/04/2021, 8:51 PMpip show prefect
Dana Merrick
03/04/2021, 8:52 PM# pip show prefect
Name: prefect
Version: 0.14.11
Summary: The Prefect Core automation and scheduling engine.
Home-page: <https://www.github.com/PrefectHQ/prefect>
Author: Prefect Technologies, Inc.
Author-email: <mailto:help@prefect.io|help@prefect.io>
License: Apache License 2.0
Location: /miniconda/lib/python3.8/site-packages
Requires: pyyaml, pendulum, pytz, marshmallow, urllib3, requests, cloudpickle, tabulate, msgpack, dask, python-box, python-dateutil, click, distributed, mypy-extensions, marshmallow-oneofschema, toml, croniter, python-slugify, docker
Required-by:
Zanie
03/04/2021, 8:52 PMfind / --name "prefect"
which prefect
prefect version
python -c "import prefect; print(prefect.__version__)"
Dana Merrick
03/04/2021, 8:55 PMroot@a8d8f2241072:/reverie# python -c "import prefect; print(prefect.__version__)"
0.14.11
root@a8d8f2241072:/reverie# source activate reverie_env
(reverie_env) root@a8d8f2241072:/reverie# python -c "import prefect; print(prefect.__version__)"
0.5.0
pip install
(during testing)Zanie
03/04/2021, 8:58 PM