1. MyBlog Introduction
Set yourself a learning project for:
- Using the learned Python web development technology, the framework Django
- Use the learned CSS technology to achieve front-end functionality
- Draw a sketch of the front page function using the Axure tool you learned
- Use the learned JavaScript technology to achieve front-end functionality
- Use the learned MySQL technology to achieve back-end functionality
2. Project phase
The current thinking is that there are three stages:
- The first stage: using the most primitive CSS, Javascript,mysql,python framework technology, as far as possible to learn the knowledge points, flexible application come up
- Phase two: Switch to using Bootstrap,jquery Library front-end technology to transform project front-end functionality
- Phase three: Database switches to MySQL's ORM model to re-implement backend functionality
Free time is limited, only in the leisure time as far as possible to complete the function, the focus is the current knowledge, has been applied in some projects, a repetition of knowledge, strengthen their own ability, as far as possible to master their own full stack development capabilities, but also for their own full stack of the road to a more practice.
3. Today's Progress
- Installing the Python 3.6.5 x86-64bit Windows platform
- Installing the Pycharm 2018.1.3 64bit platform
- Installing Ipython 6.4.0
- Installing the Django 2.0.5
3.1. Install Python 3.6.5
Download the Windows Platform installation package: Https://www.python.org/ftp/python/3.6.5/python-3.6.5-amd64.exe
Right click on install
3.2. Installation Pycharm 2018.1.3
Download the Windows Platform installation package: Https://download.jetbrains.com/python/pycharm-professional-2018.1.3.exe
Right click on the installation, the professional version needs to register, welcome to purchase genuine.
3.3. Install Ipython 6.4.0
windows open CMD window, enter PIP3 install Ipython, pop-up hint:
C:\users\admin>
PIP3 Install Ipython
Collecting Ipython
Could not find a version this satisfies the requirement Ipython (from versions:)
No matching distribution found for Ipython
You are using the PIP version 9.0.3, however version 10.0.1 is available.
You should consider upgrading via the ' python-m pip install--upgrade pip ' command.C:\users\admin>
python-m pip install--upgrade pip # Execute the command as prompted by the previous commandCollecting Pip
Downloading https://files.pythonhosted.org/packages/0f/74/ ECD13431BCC456ED390B44C8A6E917C1820365CBEBCB6A8974D1CD045AB4/PIP-10.0.1-PY2.PY3-NONE-ANY.WHL (1.3MB)
100% [... ...].. ..... ....... ............................... 1.3MB 473kb/s
Installing collected Packages:pip
Found existing Installation:pip 9.0.3
Uninstalling pip-9.0.3:
Successfully uninstalled pip-9.0.3
Successfully installed pip-10.0.1
c:\users\admin>pip3 Install Ipython # Execute the command again, the installation Ipython successful (log no longer available)
C:\users\admin>ipython # Command Start
C:\users\admin>ipython
Python 3.6.5 (V3.6.5:F59C0932B4, Mar 2018, 17:00:18) [MSC v.1900 bit (AMD64)]
Type ' copyright ', ' credits ' or ' license ' for more information
IPython 6.4.0--an enhanced Interactive Python. Type '? ' for help. In [1]: Import Django
In [2]: Django. VERSION
out[2]: (2, 0, 5, ' final ', 0)in [3]:3.4. Installing the Django 2.0.5
C:\USERS\ADMIN>PIP3 Insall Django # You can install Django here, but the Django in my environment is automatically installed when I start the pycharm and create a Django project. such as: Click Create will automatically install Pytz and django-2.0.5, in fact, can also be installed through the PIP3 command, or directly to the Django official website Download django-2.0.5 package, and then login pypi download Pytz package, in the Python3 The setup.py install command installs the Pytz package first, and then installs the django-2.0.5 to implement the package installation.
[Timlinux] Python Django myblog Boot