Python and pip
(Python Package Manager) are installed on your system. Make sure to use pip's latest version.Create and activate
virtual env.python --version
If you find that you do not have Python installed on your computer, then you can download it for free from the following website:Python 3.13.2
https://www.python.org/
pip --version
If you do not have PIP installed, you can download and install it from this page:pip 25.2 from c:\python39\lib\site-packages\pip (python 3.13)
https://pypi.org/project/pip/
py -m venv path/to/virtual_env
python -m venv path/to/virtual_env
path\to\virtual_env\Scripts\activate.bat
source path/to/virtual_env/bin/activate
(path/to/virtual_env) C:\Users\Your Name>
(path/to/virtual_env) ... $
pip install -r /path/to/requirements.txt
py manage.py runserver