[Answered ]-Can't create django app in Conda environment.

2👍

This question is old, but if anyone is wondering the exact steps to create a Django application using conda, here it is

  1. conda create -n <nameoftheapplication> python=3.6
  2. source activate <nameoftheapplication> Note: For Windows just put activate
  3. pip install django
  4. django-admin.py startproject <nameoftheapplication>
  5. cd <nameoftheapplication>
  6. ls

You should see manage.py and a folder called <nameoftheapplication> which contains settings files.

0👍

Firstly, open the anaconda prompt in windows then go to the project directory and enter the following command:

  1. conda create -n python=3.6 anaconda
  2. activate
  3. pip install django
  4. django-admin.py startproject
  5. cd
  6. python manage.py runserver

Then open web browser and enter the http://127.0.0.1:8000/ to see django page.

Leave a comment