Skip to content

Commit

Permalink
v0.1.0 default; pip git install
Browse files Browse the repository at this point in the history
  • Loading branch information
ggbetz committed Nov 29, 2023
1 parent 9219f68 commit 46fc03f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions examples/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fi

# logikon release tag
if [ -z "${LGK_RELEASE}" ]; then
RELEASE="v0.0.1-dev1" # default
RELEASE="v0.1.0" # default
else
RELEASE="${LGK_RELEASE}"
fi
Expand Down Expand Up @@ -86,7 +86,12 @@ if [ "$FRAMEWORK" = "transformers" ]; then
pip install accelerate bitsandbytes
fi

pip install -U git+https://${GH_ACCESS_TOKEN}@github.com/logikon-ai/logikon.git@${RELEASE}
if [ $GH_ACCESS_TOKEN -gt 0 ]; then
pip install -U git+https://${GH_ACCESS_TOKEN}@github.com/logikon-ai/logikon.git@${RELEASE}
else
pip install -U git+https://github.com/logikon-ai/logikon.git@${RELEASE}
fi



## DOWNLOADS ##
Expand Down

0 comments on commit 46fc03f

Please sign in to comment.