Recommendation System django backend
- Install Python Download Python and Install in you system.
- Install Pip Follow these steps to install pip:
- Download get-pip.py to a folder on your computer.
- Open a command prompt and navigate to the folder containing get-pip.py.
- Run the following command:
python get-pip.py
- Pip is now installed!
- Install virtualenv:
pip install virtualenv
- Create a Virtual Python Environment
cd my-project
virtualenv --python C:\Path\To\Python\python.exe venv
- Activate the Environment
.\venv\Scripts\activate
- Add Libraries
pip install -r requirements.txt
- Execute Python
python manage.py runserver
- Run the local server on browser:
127.0.0.1:8000