My Brain Cells

Easiest (and best) learning materials for anyone with a curiosity for machine learning and artificial intelligence, Deep learning, Programming, and other fun life hacks.

Category: full stack development

Setup Django Project

Setup: 1. Install Python on your PC 2. Create project folder as “Projects” 3. Create a virtual environment                  $ pyvenv <env-folder>                 # Or, if pyvenv is not available                 $ python3 -m venv <env-folder> If…

Back to top