VS C++项目中,选择工程项名称,右菜单中选择--->仅适用于项目---->仅生成(项目)

1.make_buildinfo,make_versioninfo

make_buildinfo.exe

make_versioninfo_d.exe

2.pythoncore

python25_d.lib

python25_d.dll

3.python,pythonw

python_d.exe

pythonw_d.exe

下载setuptools-21.1.0.zip  (WINDOW 下的扩展名 zip)

E:\setuptools-21.1.0\setuptools-21.1.0>python setup.py install

Copying setuptools-21.1.0-py3.4.egg to c:\python34\lib\site-packages
Adding setuptools 21.1.0 to easy-install.pth file
Installing easy_install-script.py script to C:\Python34\Scripts
Installing easy_install.exe script to C:\Python34\Scripts
Installing easy_install.exe.manifest script to C:\Python34\Scripts
Installing easy_install-3.4-script.py script to C:\Python34\Scripts
Installing easy_install-3.4.exe script to C:\Python34\Scripts
Installing easy_install-3.4.exe.manifest script to C:\Python34\Scripts

---------------------------------------------------------------------------------------------------

安装Django:

E:\Django-1.9.6\Django-1.9.6>python setup.py install

creating 'dist\Django-1.9.6-py3.4.egg' and adding 'build\bdist.win32\egg' to it
removing 'build\bdist.win32\egg' (and everything under it)
Processing Django-1.9.6-py3.4.egg
creating c:\python34\lib\site-packages\Django-1.9.6-py3.4.egg

Extracting Django-1.9.6-py3.4.egg to c:\python34\lib\site-packages

Adding Django 1.9.6 to easy-install.pth file

Installing django-admin.py script to C:\Python34\Scripts
Deleting C:\Python34\Scripts\django-admin.py
Installing django-admin-script.py script to C:\Python34\Scripts
Installing django-admin.exe script to C:\Python34\Scripts
Installing django-admin.exe.manifest script to C:\Python34\Scripts

Installed c:\python34\lib\site-packages\django-1.9.6-py3.4.egg
Processing dependencies for Django==1.9.6
Finished processing dependencies for Django==1.9.6

---------------------------------------------------------------------------------------------------------------------------------

系统变量加入以下路径:
C:\Python34;C:\Python34\Scripts;C:\Python34\Lib\site-packages\Django-1.9.6-py3.4.egg\django\bin

测试:

C:\Users\Administrator>cd C:\Python34\Lib\site-packages\Django-1.9.-py3..egg\django\bin

C:\Python34\Lib\site-packages\Django-1.9.-py3..egg\django\bin>python Django-admin.py  startproject  testemo

C:\Python34\Lib\site-packages\Django-1.9.-py3..egg\django\bin>cd testemo

C:\Python34\Lib\site-packages\Django-1.9.-py3..egg\django\bin\testemo> python manage.py runserver
Performing system checks... System check identified no issues ( silenced). You have unapplied migrations; your app may not work properly until they are applied.
Run 'python manage.py migrate' to apply them.
May , - ::
Django version 1.9., using settings 'testemo.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
Not Found: /
[/May/ ::] "GET / HTTP/1.1"
Not Found: /favicon.ico
[/May/ ::] "GET /favicon.ico HTTP/1.1"
ie:
http://127.0.0.1:8000/

It worked!

Congratulations on your first Django-powered page.

Of course, you haven't actually done any work yet. Next, start your first app by running python manage.py startapp [app_label]. 

You're seeing this message because you have DEBUG = True in your Django settings file and you haven't configured any URLs. Get to work! 

python 2.5源代码编绎的更多相关文章

  1. MYSQL 源代码编绎脚本

    http://blog.csdn.net/hopingwhite/article/details/5808101

  2. mysql 源代码编绎

    http://blog.chinaunix.net/uid-20723616-id-769326.html https://software.intel.com/zh-cn/blogs/2010/08 ...

  3. Linux CentOS 编绎安装Python 3.5

    Linux CentOS 编绎安装Python 3.5 先决条件(若无安装,则不能编绎使用idle3):yum install tk-devel xz -d Python-3.5.0.tar.xzta ...

  4. 编绎openssl杂记(window)

    Window 下 OpenSSL 编绎过程 1. 下载 ActivePerl-5.12.4.1205  , openssl-0.9.8 , 配置Perl环境变量 , 解压openssl-0.9.82. ...

  5. JavaScript构建(编绎)系统大比拼:Grunt vs. Gulp vs. NPM

    Nicolas Bevacqua进行了一个比较JavaScript构建(编绎)系统的任务.他对三巨头: Grunt, Gulp and NPM进行了比较,并讨论了每种的优缺点. By Nicolas ...

  6. 编绎报错,解决方法objc_msgSend too many arguments to function call,expected 0, have3 (转)

      编绎报错,objc_msgSend too many arguments to function call,expected 0, have3 解决方法:    

  7. 编绎OpenJDK

    因为对于Java里的vtable,itable,有个地方还没搞明白,不得已去下个OpenJDK来研究下. 本来很不愿意去编绎OpenJDK,因为很有可能做的只是无用功,还有可能要去解决各种找不到链接库 ...

  8. CentOS编绎gcc

    1.解压tar -jxvf gcc-6.3.0.tar.bz2 -C ~/dev/2.下载前前提软件包cd gcc-6.3.0 ./contrib/download_prerequisitescd . ...

  9. Ubuntu编绎 Objective C程序

    1.安装如下组件 sudo apt-get install如下组件:build-essential gobjc gobjc++ gnustep-devel 2.在工作目录建立下如Shell脚本,并更改 ...

随机推荐

  1. webdriver(python)学习笔记五——层级定位

    层级定位 在实际的项目测试中,经常会有这样的需求:页面上有很多个属性基本相同的元素,现在需要具体定位到其中的一个.由于属性基本相当,所以在定位的时候会有些麻烦,这时候就需要用到层级定位.先定位父元素, ...

  2. HDU5777 domino (BestCoder Round #85 B) 思路题+排序

    分析:最终的结果肯定会分成若干个区间独立,这些若干个区间肯定是独立的(而且肯定是一边倒,左右都一样) 这样想的话,就是如何把这n-1个值分成 k份,使得和最小,那么就是简单的排序,去掉前k大的(注意l ...

  3. UIBezierPath 贝塞尔曲线

    1. UIBezierPath * path = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(30, 30, 100, 100) corner ...

  4. Webdriver API (三)- actions

    Actions类主要定义了一些模拟用户的鼠标mouse,键盘keyboard操作.对于这些操作,使用perform()方法进行执行. actions类可以完成单一的操作,也可以完成几个操作的组合. 有 ...

  5. sizeof和strlen小结

    sizeof和strlen小结 写在前面 之所以要总结一下sizeof和strlen的用法和区别,是因为这些知识可以帮助我们更加深入的理解各种数据结构在内存中的占用情况,也许表面上看好像没有多大用处, ...

  6. 一个使用微软Azure blob实现文件下载功能的实例-附带源文件

    Running the sample Please follow the steps below. Step 1: Open the CSAzureServeFilesFromBlobStorage. ...

  7. 瞬间从IT屌丝变大神——HTML规范

    HTML规范包含以下内容: DTD统一用<!DOCTYPE HTML PUBLIC "_//W3C//DTD XHTML 1.0 Transitional//EN"" ...

  8. Spark中的编程模型

    1. Spark中的基本概念 Application:基于Spark的用户程序,包含了一个driver program和集群中多个executor. Driver Program:运行Applicat ...

  9. nyoj 203 三国志(最短路加01背包)

    三国志 时间限制:3000 ms  |  内存限制:65535 KB 难度:5   描述 <三国志>是一款很经典的经营策略类游戏.我们的小白同学是这款游戏的忠实玩家.现在他把游戏简化一下, ...

  10. POJ3630Phone List(字典树)

    参考http://s.acmore.net/show_article/show/58 以附上代码 #include<iostream> #include<stdio.h> #i ...