Spaces:
Sleeping
Sleeping
File size: 752 Bytes
410cc8f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
git clone https://github.com/xtekky/deepseek4free.git
echo "recursive-include dsk/wasm *" >> ./deepseek4free/MANIFEST.in
echo "from setuptools import find_packages, setup
INSTALL_REQUIRE = [
'curl-cffi',
'wasmtime',
'numpy',
]
DESCRIPTION = (
'The official gpt4free repository | various collection of powerful language models'
)
# Setting up
setup(
name='dsk',
version='0.0.1.0',
author='Tekky',
author_email='<[email protected]>',
description=DESCRIPTION,
long_description_content_type='text/markdown',
long_description='',
packages=find_packages(),
include_package_data=True,
install_requires=INSTALL_REQUIRE
)" >> ./deepseek4free/setup.py
pip install ./deepseek4free --break-system-packages |