Как я могу решить эту проблему с установкой django2-semantic-ui=1.2.2 с помощью pip?
Я пытаюсь локально запустить существующее приложение django и установить django2-semantic-ui==1.2.2 с помощью команды: pip install django-semantic-ui=1.2.2
. Вот ошибка, которую я получаю:
Using cached django2_semantic_ui-1.2.2.tar.gz (8.1 kB)
ERROR: Command errored out with exit status 1:
command: 'C:\Users\aakar\OneDrive\Documents\Data4Good\data4good-django\myenv\Scripts\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\aakar\\AppData\\Local\\Temp\\pip-install-fti4wdiz\\django2-semantic-ui_86580566b774418c94ae3e3de149c712\\setup.py'"'"'; __file__='"'"'C:\\Users\\aakar\\AppData\\Local\\Temp\\pip-install-fti4wdiz\\django2-semantic-ui_86580566b774418c94ae3e3de149c712\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup;
setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\aakar\AppData\Local\Temp\pip-pip-egg-info-u198istg'
cwd: C:\Users\aakar\AppData\Local\Temp\pip-install-fti4wdiz\django2-semantic-ui_86580566b774418c94ae3e3de149c712\
Complete output (7 lines):
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\aakar\AppData\Local\Temp\pip-install-fti4wdiz\django2-semantic-ui_86580566b774418c94ae3e3de149c712\setup.py", line 5, in <module>
long_description = fh.read()
File "c:\python3\lib\encodings\cp1252.py", line 23, in decode
return codecs.charmap_decode(input,self.errors,decoding_table)[0]
UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in position 919: character maps to <undefined>
----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/a1/76/e57ee8bf33259f832ae9f5c8d4d24a701516389f633efa37627922b6706a/django2_semantic_ui-1.2.2.tar.gz#sha256=a5efe89908c11e231dcea7cad249fd7bf629f7189d5621cd0d3bc82d154a9676 (from https://pypi.org/simple/django2-semantic-ui/) (requires-python:>=3.*). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
ERROR: Could not find a version that satisfies the requirement django2-semantic-ui==1.2.2 (from versions: 1.0.0b0, 1.0.0b1, 1.0.0b3, 1.0.0b4, 1.0.0, 1.0.1b0, 1.0.1, 1.1.0b0, 1.1.0, 1.1.1, 1.1.2, 1.2.0b0, 1.2.0b1, 1.2.0b2, 1.2.0b3, 1.2.0, 1.2.1b0, 1.2.1b1, 1.2.1b2, 1.2.1b3, 1.2.1b4, 1.2.1b5, 1.2.1b6, 1.2.1, 1.2.2b0, 1.2.2b1, 1.2.2)
ERROR: No matching distribution found for django2-semantic-ui==1.2.2
Все остальные пакеты из файла requirements.txt были успешно установлены. Как я могу устранить эту ошибку?