`'ERROR: Could not find a version that satisfies t...
# ingestion
b
'ERROR: Could not find a version that satisfies the requirement acryl-datahub[datahub-rest,mssql]==0.8.26.6 (from versions: none)\n'
'ERROR: No matching distribution found for acryl-datahub[datahub-rest,mssql]==0.8.26.6\n'
b
try "pip install acryl-datahub[datahub-rest,mssql]==0.8.26.6?" you need the respective libraries to ingest from various sources
b
Oh! Thanks a lot! I will try right away!
Successfully installed acryl-datahub-0.8.26.6 avro-gen3-0.7.1 typing-extensions-3.10.0.2
after try above, I got that message. however still see
Copy code
'ERROR: Could not find a version that satisfies the requirement acryl-datahub[datahub-rest,mssql]==0.8.26.6 (from versions: none)\n'
           'ERROR: No matching distribution found for acryl-datahub[datahub-rest,mssql]==0.8.26.6\n'
b
what does "datahub check plugins" say
b
Sources: athena (disabled) azure-ad bigquery (disabled) bigquery-usage (disabled) data-lake (disabled) datahub-business-glossary dbt druid (disabled) elasticsearch (disabled) feast file glue (disabled) hive (disabled) kafka (disabled) kafka-connect (disabled) ldap (disabled) looker (disabled) lookml (disabled) mariadb (disabled) metabase (disabled) mode (disabled) mongodb (disabled) mssql mysql (disabled) nifi okta (disabled) openapi oracle (disabled) postgres (disabled) redash (disabled) redshift (disabled) redshift-usage (disabled) sagemaker (disabled) snowflake (disabled) snowflake-usage (disabled) sqlalchemy starburst-trino-usage (disabled) superset tableau (disabled) trino (disabled) Sinks: console datahub-kafka (disabled) datahub-rest file Transformers: add_dataset_ownership add_dataset_properties add_dataset_tags add_dataset_terms mark_dataset_status pattern_add_dataset_ownership pattern_add_dataset_tags pattern_add_dataset_terms set_dataset_browse_path simple_add_dataset_ownership simple_add_dataset_properties simple_add_dataset_tags simple_add_dataset_terms simple_remove_dataset_ownership For details on why a plugin is disabled, rerun with '--verbose' If a plugin is disabled, try running: pip install 'acryl-datahub[<plugin>]'
and also I will follow the page that you gave above (about the cli)
s
can you please check
Copy code
python -c "import sys; print(sys.version); print(sys.executable); import datahub; print(datahub.__file__); print(datahub.__version__);"
and
Copy code
python3 -c "import sys; print(sys.version); print(sys.executable); import datahub; print(datahub.__file__); print(datahub.__version__);"
Sometimes what happens is you have 2 different python versions on your local
thank you 1
Please share the full CLI command that you are running which produces https://datahubspace.slack.com/archives/CUMUWQU66/p1648520157001559
b
[zwahn@datahub-zwahn
~]$ python3 -c
"import sys; print(sys.version); print(sys.executable); import datahub;
> print(datahub.__file__); print(datahub.__version__);
> "
3.6.8 (default, Nov 16 2020, 16:55:22)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-44)]
/usr/bin/python3
/home/zwahn/.local/lib/python3.6/site-packages/datahub/__init__.py
0.8.26.6
[zwahn@datahub-zwahn
~]$ python -c
"import sys; print(sys.version); print(sys.executable); import datahub;
> print(datahub.__file__); print(datahub.__version__);"
2.7.5 (default, Nov 16 2020, 22:23:17)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-44)]
/usr/bin/python
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named datahub
s
As you can see from the above
python3
has DataHub installed. We do not support Python 2 (which is
python
command in your case)
b
yes, I see! Thanks a lot, Aseem!