This commit is contained in:
utahta
2011-07-20 00:08:01 +09:00
parent 219ad17459
commit ef4ff75630
2 changed files with 15 additions and 4 deletions
+14 -3
View File
@@ -51,7 +51,7 @@ Use the specified python in current shell::
Runs a named python file against specified and/or all pythons::
pythonbrew py test.py
pythonbrew py -v test.py # Show running python version
pythonbrew py -v test.py # Show verbose output
pythonbrew py -p 2.7.2 -p 3.2 test.py # Use the specified pythons
List the installed pythons::
@@ -88,6 +88,11 @@ Create/Remove a symbolic link to python (in a directory on your $PATH)::
pythonbrew symlink pip # Create a symbolic link to the specified script in bin directory
pythonbrew symlink -r # Remove a symbolic link
Runs the buildout with specified or current using python::
pythonbrew buildout
pythonbrew buildout -p 2.6.6
Show version::
pythonbrew version
@@ -125,11 +130,17 @@ update
off
Disable pythonbrew.
symlink
Create/Remove a symbolic link to python (in a directory on your $PATH)
buildout
Runs the buildout with specified or current using python.
version
Show version.
See more details below::
See more details below:
pythonbrew help <command>
+1 -1
View File
@@ -10,7 +10,7 @@ from pythonbrew.downloader import Downloader
class BuildoutCommand(Command):
name = "buildout"
usage = "%prog"
summary = "Runs the buildout against specified or currently use python"
summary = "Runs the buildout with specified or current using python"
def __init__(self):
super(BuildoutCommand, self).__init__()