thisbejim / Pyrebase

A simple python wrapper for the Firebase API.
2.06k stars 527 forks source link

installation error #320

Open pophubup opened 4 years ago

pophubup commented 4 years ago

ERROR: Command errored out with exit status 1: command: 'c:\users\teres\desktop\pylearning\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\Users\teres\AppData\Local\Temp\pip-install-4tr77ojt\jws\setup.py'"'"'; file='"'"'C:\Users\teres\AppData\Local\Temp\pip-install-4tr77ojt\jws\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(file);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');jws\pip-egg-info' cwd: C:\Users\teres\AppData\Local\Temp\pip-install-4tr77ojt\jws\ Complete output (7 lines): Traceback (most recent call last): File "", line 1, in File "C:\Users\teres\AppData\Local\Temp\pip-install-4tr77ojt\jws\setup.py", line 17, in long_description=read('README.md'), File "C:\Users\teres\AppData\Local\Temp\pip-install-4tr77ojt\jws\setup.py", line 5, in read return open(os.path.join(os.path.dirname(file), fname)).read() UnicodeDecodeError: 'cp950' codec can't decode byte 0xe2 in position 500: illegal multibyte sequence

ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

from setuptools import setup, find_packages setup( name='Pyrebase', version='3.0.27', url='https://github.com/thisbejim/Pyrebase', description='A simple python wrapper for the Firebase API', author='James Childs-Maidment', license='MIT', classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3.4', ], keywords='Firebase', packages=find_packages(exclude=['tests']), install_requires=[ 'requests==2.11.1', 'gcloud==0.17.0', 'oauth2client==3.0.0', 'requests_toolbelt==0.7.0', 'python_jwt==2.0.1', 'pycryptodome==3.4.3' ] )

My python version is 3.8.0 setuptools version is 41.6.0 pycryptodome is installed already 3.4.3 Don't know where I'm missing Please help me.