No matching distribution found for datatap
ERROR: Could not find a version that satisfies the requirement datatap ERROR: No matching distribution found for datatap
Python 3.7.6
Thanks for filing an issue! Can you provide which command produced this, as well as which operating system it was run under?
This was on a Kaggle notebook, !pip3 install Datatap. I was also unable to install it in a Colab notebook, same process and same error.
Is there any chance that your Kaggle notebook is not connected to the internet, or is using a different environment than the default? On a fresh Kaggle notebook, once internet access have been enabled, !pip3 install datatap works without issue.
Ahh thank you! I feel like a dummy, I did not know I had to turn on the internet in a Kaggle notebook. I usually work with Colab. I am following your tutorial and it asks for my API key. Where do I find that?
Ok actually I found it
Sorry for being annoying. How do I view a dataset in droplet format? I would like to see how the droplet format compares to standard formats like COCO and Pascal VOC.
Glad you figured it out! There's no raw code preview yet in the platform, but you can use the raw API to see the JSON. That would look something like
from datatap.api.endpoints import ApiEndpoints
endpoints = ApiEndpoints()
generator = endpoints.dataset.stream_split(
database_uid,
namespace, # probably "_"
name,
tag, # probably "latest",
split, # "training" or "validation",
chunk, # probably 0
nchunks, # 1, if you want the full data
)
print(next(generator))