fd49f7d90eea37fb6f6941f7a0840255e1914621
CareMyWay
Development (Quickstart)
- Ensure you have virtualenv installed
pip install virtualenvvirtualenv --version# 15.1.0
- Ensure you have
python3which python3# /usr/local/bin/python3
- Setup the virtual environment with python3
virtualenv -p /usr/local/bin/python3 venv
- Activate the environment, install dependencies, perform DB migration
source venv/bin/activatepip install -r requirements.txtpython manage.py migratepython manage.py runserver
If you get ano such table error, try: python manage.py migrate --run-syncdb
Description
Languages
Python
100%