Ошибка установки Django-администратора - Не удалось построить колесо для экрана

Я опубликовал свой проект на Windows-сервере, но domain.com/admin не работает. В результате исследований в интернете я хотел установить Django-admin, но получаю ошибку. На моем компьютере такой проблемы не было.

         Creating library build\temp.win-amd64-cpython-312\Release\source\str_util.cp312-win_amd64.lib and object build\temp.win-amd64-cpython-312\Release\source\str_util.cp312-win_amd64.exp
  str_util.obj : error LNK2001: unresolved external symbol PyUnicode_AS_UNICODE
  build\lib.win-amd64-cpython-312\screen\str_util.cp312-win_amd64.pyd : fatal error LNK1120: 1 unresolved externals
  error: command 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.38.33130\\bin\\HostX86\\x64\\link.exe' failed with exit code 1120
  [end of output]

note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for screen
Failed to build screen
ERROR: Could not build wheels for screen, which is required to install pyproject.toml- 
based projects

C:\inetpub\vhosts\domain.com.tr\httpdocs>

Urls.py

from django.contrib import admin

urlpatterns = [
path('admin/', admin.site.urls),
path('sitemap.xml', sitemap, {'sitemaps': sitemaps}, 
name='django.contrib.sitemaps.views.sitemap'),
] 

if settings.DEBUG:
  urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
Вернуться на верх