In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly shows you "how to build a Django environment based on Anaconda". The content is simple and clear. I hope it can help you solve your doubts. Let me lead you to study and learn this article "how to build a Django environment based on Anaconda".
I. introduction
Django features: with a complete package, developers can efficiently develop projects, Django encapsulates most of the functions, developers only need to call, so, greatly shorten the development time, but also because too much encapsulation leads to the lack of development flexibility and project efficiency. Usually at work, developers can use Django to quickly build a project, and then optimize the efficiency of individual parts based on the project.
Second, django environment installation 1. Create a virtual environment Django
Create a new Django virtual environment in spyder.
two。 Activate sandbox environment
Open the prompt of anaconda and enter:
Activate Django
3. Install Django
Then enter:
Pip install Django
The installation is complete.
4. Test whether django is installed successfully
Open the terminal and run the following command:
Import django
Django.VERSION
The presence of the django version number indicates that the installation is successful.
III. Installation and configuration of pycharm
Create a new Django project in pycharm.
Select the previously created Django virtual environment.
Finally, the Djangotest project is generated.
Then activate the Django environment in Anaconda Prompt, enter the Djangotest project, and enter:
Python manage.py runserver 8080
Enter URL: localhost:8080
4. Create a simple Django example
Under the Djangotest project, enter:
Python manage.py startapp polls
This command generates the polls folder and some of its files.
Open polls/views.py and enter the following code:
From django.http import HttpResponse def index (request): return HttpResponse ("Hello, world You're at the polls index.")
Create a polls/urls.py file and enter the following code:
From django.urls import path from. Import views urlpatterns = [path ('', views.index, name='index'),]
The polls/urls module is included in the mysite/urls.py file. The modified mysite/urls.py file is as follows:
From django.contrib import adminfrom django.urls import include, path urlpatterns = [path ('polls/', include (' polls.urls')), path ('admin/', admin.site.urls),]
Execute the following command in Anaconda Prompt:
Python manage.py runserver
When you visit http://localhost:8000/polls/ in your browser, you will see that the page displays the text "Hello, world. You're at the polls index.", the text defined in the polls/views.py file.
These are all the contents of the article "how to build a Django environment based on Anaconda". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.