From dd6747f1ce164f59865bc6a7f051e5cbac7c55a9 Mon Sep 17 00:00:00 2001 From: "bobo.yang" Date: Thu, 16 Nov 2023 08:43:11 +0800 Subject: [PATCH] Install devchat without binary dependencies. --- no_binary_install.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 no_binary_install.sh diff --git a/no_binary_install.sh b/no_binary_install.sh new file mode 100755 index 00000000..153be7f4 --- /dev/null +++ b/no_binary_install.sh @@ -0,0 +1,7 @@ +set -e + +pip install --no-binary :all: "pydantic<2" +pip install charset-normalizer --no-binary :all: +pip install git+https://github.com/yangbobo2021/tiktoken.git +pip install . +python -c "import site; print(site.getsitepackages())" \ No newline at end of file