Boilerplate for Django ML Model Deployment
1.0.0
시스템에 R
설치되어 있는지 확인하십시오.
R 종속성을 설치합니다.
install.packages('nnet')
터미널이나 명령 프롬프트에서 Rscript
명령을 실행할 수 있는지 확인하십시오.
pipenv
사용하여 가상 환경을 생성하거나 시작합니다.
pipenv shell
종속성을 설치합니다.
pip install -r requirements.txt
더미 이메일 서버를 시작하거나 설정 파일에 구성을 추가하세요.
python -m smtpd -n -DebuggingServer localhost:1025
Django 서버를 시작합니다.
python manage.py runserver