2👍
This question is old, but if anyone is wondering the exact steps to create a Django application using conda, here it is
conda create -n <nameoftheapplication> python=3.6
source activate <nameoftheapplication>
Note: For Windows just put activatepip install django
django-admin.py startproject <nameoftheapplication>
cd <nameoftheapplication>
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:
- conda create -n python=3.6 anaconda
- activate
- pip install django
- django-admin.py startproject
- cd
- python manage.py runserver
Then open web browser and enter the http://127.0.0.1:8000/ to see django page.
Source:stackexchange.com