2011-10-19 2 views
0

가상 환경 (python 2.7)을 실행하는 Windows 7에 TurboGears2를 설치하고 있습니다. 내가 대신빠른 시작 옵션이 없습니다

paster --help 

실행할 때 paster 빠른 시작 옵션을보고 있지 않다, 여기에 출력입니다 : 내가 얻을

(VirtualEnv_1) C:\VirtualEnv_1\Scripts>paster quickstart 

: 그래서

(VirtualEnv_1) C:\VirtualEnv_1\Scripts>paster --help 
Usage: paster-script.py [paster_options] COMMAND [command_options] 

Options: 
    --version   show program's version number and exit 
    --plugin=PLUGINS Add a plugin to the list of commands (plugins are Egg 
        specs; will also require() the Egg) 
-h, --help  Show this help message 

Commands: 
create  Create the file layout for a Python distribution 
help   Display help 
make-config Install a package and create a fresh config file/directory 
points  Show information about entry points 
post   Run a request for the described application 
request  Run a request for the described application 
serve  Serve the described application 
setup-app Setup an application, given a config file 

TurboGears2: 
tginfo  Show TurboGears 2 related projects and their versions 

, 내가 실행할 때 놀라운 일이 아니다 :

Command 'quickstart' not known (you may need to run setup.py egg_info) 
Known commands: 
    create  Create the file layout for a Python distribution 
    exe   Run #! executable files 
    help   Display help 
    make-config Install a package and create a fresh config file/directory 
    points  Show information about entry points 
    post   Run a request for the described application 
    request  Run a request for the described application 
    serve  Serve the described application 
    setup-app Setup an application, given a config file 
    tginfo  Show TurboGears 2 related projects and their versions 

내 questi 내가 누락 된 이유는 무엇이며 어떻게 얻을 수 있습니까?

답변

1

당신은 당신이 실행 TurboGears 응용 프로그램 (TurboGears2)에 필요한 패키지를 설치 한이 상황에 얻을 수 있지만 에 필요한 하나에게 TurboGears 응용 프로그램 (tg.devtools)를 개발한다.

올바른 패키지를 설치해야합니다 귀하의 VIRTUALENV에있는 동안 다음 명령을 실행 :

easy_install -i http://www.turbogears.org/2.1/downloads/current/index tg.devtools 
+0

감사합니다, 선생님! 왜이 문서에서 더 명백하지 않은 것은 인류에 대한 범죄입니다. :) – Smittles