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. Delphi 使用串口模拟工具进行串口程序开发调试

      版权声明:本文为博主原创文章,如需转载请注明出处及作者. 本文由小李专栏原创,转载需注明出处:[http://blog.csdn.net/softwave/article/details/8907 ...

  2. UITextView 相关知识点

    1.得到UITextView的高度 - (CGRect)contentSizeRectForTextView:(UITextView *)textView { [textView.layoutMana ...

  3. CMDB反思2

    当云灭掉CMDB http://blog.vsharing.com/xqscool/A1193910.html 虽然之前也思考过当运维底层都被替换为云时,现有的传统运维可能就消失了,其所依赖的ITIL ...

  4. linux挂载问题解决

    1. 挂载光盘 </pre></p><p><pre name="code" class="plain">[roo ...

  5. oracle检查点checkpoint信息

    1.关于checkpoint的概述 checkpoint是oracle在数据库一致性关闭.实例恢复和oracle基本操作中不可缺少的机制,包含以下相关的含义: A.检查点的位置(checkpoint ...

  6. 删除 Mac OS X 中“打开方式”里重复或无用的程序列表

    如果右键菜单的「打开方式」里出现了已不存在的应用程序或者重复的项目,打开终端,执行以下命令: /System/Library/Frameworks/CoreServices.framework/Ver ...

  7. Type datetime2 is not a defined system type - Entity Framework 摘自网络

    "Type datetime2 is not a defined system type" Solution: 把edmx 改为 ProviderManifestToken=&qu ...

  8. 防asp木马运行

    首 页 > 技术支持 防asp木马运行 目前比较流行的ASP木马主要通过三种技术来进行对服务器的相关操作. 一.使用FileSystemObject组件 FileSystemObject可以对文 ...

  9. 【转】Nginx系列(三)--管理进程、多工作进程设计

    原博文出于:http://blog.csdn.net/liutengteng130/article/details/46700999  感谢! Nginx由一个master进程和多个worker进程组 ...

  10. 最大二位子数组和问题(homework-02)

    前面已经谈过最大一维子数组和问题,这里面扩展到二维. 一. 常规情况 一个矩形的数组,找到一个矩形的子数组有最大的元素和,求这个和. 1. 从朴素算法入手,枚举矩形数组的4个顶点,以此计算其数组和.同 ...