skip to Main Content

cannot install django 3 on debian 9

I cannot install Django 3 on my Debian 9 system. I follow https://www.rosehosting.com/blog/how-to-install-python-3-6-4-on-debian-9/ this guide to install a Python 3 because there is no Python 3 in Debian repositories: :~# python3 Python 3.5.3 (default, Sep 27 2018, 17:25:39) ~# pip3…

VIEW QUESTION

Redis – Python Celery trying to occupy a port number in docker-compose and creating problems

docker-compose.yml: python-api: &python-api build: context: /Users/AjayB/Desktop/python-api/ ports: - "8000:8000" networks: - app-tier expose: - "8000" depends_on: - python-model volumes: - .:/python_api/ environment: - PYTHON_API_ENV=development command: > sh -c "ls /python-api/ && python_api_setup.sh development python manage.py migrate && python manage.py runserver…

VIEW QUESTION
Back To Top
Search