Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
singlestore-labs
GitHub Repository: singlestore-labs/singlestoredb-python
Path: blob/main/conda.recipe/build.sh
469 views
1
#!/bin/bash
2
3
if [[ $(uname) =~ Linux* ]]; then
4
python -m pip install --no-deps --ignore-installed dist/singlestoredb-*linux*.whl
5
fi
6
7
if [[ $(uname) =~ Darwin* ]]; then
8
python -m pip install --no-deps --ignore-installed dist/singlestoredb-*macos*.whl
9
fi
10
11