mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 15:20:16 +00:00
update
This commit is contained in:
+14
-3
@@ -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>
|
||||
|
||||
|
||||
@@ -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__()
|
||||
|
||||
Reference in New Issue
Block a user