search
HomeBackend DevelopmentPython TutorialEclipse+PyDev+Django+Mysql builds Python web development environment

There are many Python web frameworks. The current mainstream ones include Django, Tornado, Web.py, etc. The most popular one is Django, and it is also one of the most promising frameworks. Let’s talk about how to set up a Django development environment.

1. Preparation

Software that needs to be downloaded:

JDK: Official website download address: http://www.oracle.com/technetwork/java/javase/downloads/jdk6downloads-1902814.html

Python installation package: I use the python 2.6.6 installation package. The official download address is: http://www.python.org/download/releases/

Eclipse: I use the Eclipse 3.7.2 for java ee developers version. The official download address is:

 http://www.eclipse.org/downloads/packages/release/indigo/sr2

 Pydev: http://sourceforge.net/projects/pydev/files/

 Django: https: //www.djangoproject.com/download/

 Mysql: http://www.mysql.com/downloads/mysql/

 Mysql-Python: http://www.lfd.uci.edu/~gohlke/pythonlibs /

2. Configuration process

My environment is win xp, 32-bit system.

 1. Install JDK

 Choose the appropriate version on the JDK official website http://www.oracle.com/technetwork/java/javase/downloads/jdk6downloads-1902814.html, and pay attention to the difference between 32-bit and 64-bit.

 Note that after installing the JDK, you need to configure the environment variables. For details on how to install the JDK, please refer to my previous article

 http://www.cnblogs.com/dolphin0520/archive/2012/03/08/2385309.html

 2. Install Python

 Python currently has version 3.x. Personally, I think it is better to use version 2.6 or 2.7. There are more third-party libraries in version 2.x and they are relatively stable.

 After installing Python, you need to configure the environment variables. For specific installation methods, please refer to:

 http://www.cnblogs.com/dolphin0520/archive/2013/03/05/2943747.html

 3. Install Eclipse

 Download the Eclipse installation package, unzip it and use it.

 4. Configure Pydev in Eclipse

 Pydev is an Eclipse plug-in that allows you to write Python programs in Eclipse. After downloading the Pydev installation package, unzip it and you will see the features and plugins folders. Create a folder Pydev in the Eclipse root directory, put the two unzipped folders into the Pydev folder, and then create a folder named links in the Eclipse root directory (if the links folder exists, there is no need to create it) , create a file pydev.ini in the links folder, open it with Notepad, add path=Pydev, save and close it. Then open Eclipse, select Window -> Preferences -> Pydev-> Interpreter-Python, then select New in the "Python Interpreters" panel on the right, write Python in the "Interpreter Name" of the pop-up dialog box, and enter "Interpreter Executable" Locate the address of python.exe, and then keep selecting "ok":

Here is the method to install Pydev offline. Of course, it can be installed online. Readers can Baidu how to install Pydev online.

  5. Install Django

 After downloading the Django installation package from the official website https://www.djangoproject.com/download/, unzip it first, then enter the unzipped file directory under cmd and run the command python setup .py install. After the installation is complete, you need to configure the environment variables. Generally, the installed Django is under

Libsite-packages in the Python installation directory, and then add D:Program FilesPython26Libsite-packagesdjangobin; to the system environment variable path (Note that the path value depends on individual installation conditions). After successful addition, close cmd. Restart a cmd and enter the command django-admin.py startproject mysite. If no error is prompted, the installation is successful.

  6. Install Mysql

  For the specific installation process, please refer to: http://wenku.baidu.com/view/49b110c7bb4cf7ec4afed083.html

  7. Install Mysql-Python

  Mysql-Python is the interface for Python to connect to Mysql. http://www.lfd.uci.edu/~gohlke/pythonlibs/Download the corresponding installation file. After the installation is complete, open cmd, enter python, then enter import _mysql and import MySQLdb. If no error is prompted, the installation is successful.


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What are some common reasons why a Python script might not execute on Unix?What are some common reasons why a Python script might not execute on Unix?Apr 28, 2025 am 12:18 AM

The reasons why Python scripts cannot run on Unix systems include: 1) Insufficient permissions, using chmod xyour_script.py to grant execution permissions; 2) Shebang line is incorrect or missing, you should use #!/usr/bin/envpython; 3) The environment variables are not set properly, and you can print os.environ debugging; 4) Using the wrong Python version, you can specify the version on the Shebang line or the command line; 5) Dependency problems, using virtual environment to isolate dependencies; 6) Syntax errors, using python-mpy_compileyour_script.py to detect.

Give an example of a scenario where using a Python array would be more appropriate than using a list.Give an example of a scenario where using a Python array would be more appropriate than using a list.Apr 28, 2025 am 12:15 AM

Using Python arrays is more suitable for processing large amounts of numerical data than lists. 1) Arrays save more memory, 2) Arrays are faster to operate by numerical values, 3) Arrays force type consistency, 4) Arrays are compatible with C arrays, but are not as flexible and convenient as lists.

What are the performance implications of using lists versus arrays in Python?What are the performance implications of using lists versus arrays in Python?Apr 28, 2025 am 12:10 AM

Listsare Better ForeflexibilityandMixdatatatypes, Whilearraysares Superior Sumerical Computation Sand Larged Datasets.1) Unselable List Xibility, MixedDatatypes, andfrequent elementchanges.2) Usarray's sensory -sensical operations, Largedatasets, AndwhenMemoryEfficiency

How does NumPy handle memory management for large arrays?How does NumPy handle memory management for large arrays?Apr 28, 2025 am 12:07 AM

NumPymanagesmemoryforlargearraysefficientlyusingviews,copies,andmemory-mappedfiles.1)Viewsallowslicingwithoutcopying,directlymodifyingtheoriginalarray.2)Copiescanbecreatedwiththecopy()methodforpreservingdata.3)Memory-mappedfileshandlemassivedatasetsb

Which requires importing a module: lists or arrays?Which requires importing a module: lists or arrays?Apr 28, 2025 am 12:06 AM

ListsinPythondonotrequireimportingamodule,whilearraysfromthearraymoduledoneedanimport.1)Listsarebuilt-in,versatile,andcanholdmixeddatatypes.2)Arraysaremorememory-efficientfornumericdatabutlessflexible,requiringallelementstobeofthesametype.

What data types can be stored in a Python array?What data types can be stored in a Python array?Apr 27, 2025 am 12:11 AM

Pythonlistscanstoreanydatatype,arraymodulearraysstoreonetype,andNumPyarraysarefornumericalcomputations.1)Listsareversatilebutlessmemory-efficient.2)Arraymodulearraysarememory-efficientforhomogeneousdata.3)NumPyarraysareoptimizedforperformanceinscient

What happens if you try to store a value of the wrong data type in a Python array?What happens if you try to store a value of the wrong data type in a Python array?Apr 27, 2025 am 12:10 AM

WhenyouattempttostoreavalueofthewrongdatatypeinaPythonarray,you'llencounteraTypeError.Thisisduetothearraymodule'sstricttypeenforcement,whichrequiresallelementstobeofthesametypeasspecifiedbythetypecode.Forperformancereasons,arraysaremoreefficientthanl

Which is part of the Python standard library: lists or arrays?Which is part of the Python standard library: lists or arrays?Apr 27, 2025 am 12:03 AM

Pythonlistsarepartofthestandardlibrary,whilearraysarenot.Listsarebuilt-in,versatile,andusedforstoringcollections,whereasarraysareprovidedbythearraymoduleandlesscommonlyusedduetolimitedfunctionality.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!