Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CHORE] Update tutorials to use released version of Daft #1751

Merged
merged 1 commit into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/10-min.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"metadata": {},
"outputs": [],
"source": [
"!pip install getdaft --pre --extra-index-url https://pypi.anaconda.org/daft-nightly/simple"
"!pip install getdaft"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
"metadata": {},
"outputs": [],
"source": [
"# Install Daft! (We use the nightly version here, but latest will work too.)\n",
"!pip install 'getdaft[aws]' --pre --extra-index-url https://pypi.anaconda.org/daft-nightly/simple\n",
"# Install Daft!\n",
"!pip install 'getdaft[aws]'\n",
"\n",
"# We will use sentence-transformers for computing embeddings.\n",
"!pip install sentence-transformers"
Expand Down
2 changes: 1 addition & 1 deletion tutorials/image_querying/top_n_red_color.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"metadata": {},
"outputs": [],
"source": [
"!pip install getdaft[aws,ray] --pre --extra-index-url https://pypi.anaconda.org/daft-nightly/simple\n",
"!pip install getdaft[aws,ray]\n",
"!pip install Pillow numpy"
]
},
Expand Down
2 changes: 1 addition & 1 deletion tutorials/mnist.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"metadata": {},
"outputs": [],
"source": [
"!pip install getdaft --pre --extra-index-url https://pypi.anaconda.org/daft-nightly/simple\n",
"!pip install getdaft\n",
"!pip install Pillow torch torchvision"
]
},
Expand Down
2 changes: 1 addition & 1 deletion tutorials/text_to_image/using_cloud_with_ray.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"metadata": {},
"outputs": [],
"source": [
"!pip install getdaft[ray] --pre --extra-index-url https://pypi.anaconda.org/daft-nightly/simple\n",
"!pip install getdaft[ray]\n",
"!pip install Pillow"
]
},
Expand Down
Loading