Недавно я развернул приложение Django на AWS EC2 и успешно получил к нему доступ через общедоступный IP-адрес. Затем я купил домен у Namecheap (www.myproject.com), чтобы использовать его вместо IP-адреса. После настройки домена при запуске Gunicorn...
Я хочу развернуть свой проект на pythonanywhere.com и попробовал это сделать, но столкнулся с некоторыми проблемами. Может ли кто-нибудь помочь? Это журнал ошибок
Файл wsgi.py
Я не могу понять, в чем проблема! пожалуйста, помогите
I've used PythonAnywhere before, but this is the first project that utilizes a Django back end and React front end. What is strange is that if I run this exact project on localhost, there are no troubles at all. It is only when I host this website...
How to plot graph in Pythonanywhere bash console using python matplotlib without saving the graph as a file
import matplotlib matplotlib.use( Agg ) import matplotlib.pyplot as plt fig = plt.figure() ax = fig.add_subplot(111) ax.plot(range(100))...