Exemple #1
0
def after_install(options, home_dir):
    # --- CUT here ---
    """
    called after virtualenv was created and setuptools installed.
    Now we installed PyLucid and used libs/packages.
    """
    a = AfterInstall(options, home_dir)
    a.install_packages()
    a.symlink_scripts()

    sys.stdout.write("\n")
    sys.stdout.write("PyLucid environment created in: %s\n" % c.colorize(home_dir, foreground="blue", opts=("bold",)))
    sys.stdout.write("\n")
    sys.stdout.write("Now you can create a new page instance, more info:\n")
    sys.stdout.write("http://www.pylucid.org/permalink/355/create-a-new-page-instance\n")
    sys.stdout.write("\n")
Exemple #2
0
def after_install(options, home_dir):
    # --- CUT here ---
    """
    called after virtualenv was created and setuptools installed.
    Now we installed PyLucid and used libs/packages.
    """
    a = AfterInstall(options, home_dir)
    a.install_packages()

    sys.stdout.write("\n")
    sys.stdout.write("PyLucid environment created in: %s\n" % c.colorize(home_dir, foreground="blue", opts=("bold",)))
    sys.stdout.write("\n")

    sys.stdout.write("Now you can create a new page instance with %s\n" % c.colorize("pylucid_install", foreground="blue", opts=("bold",)))
    sys.stdout.write("\n")

    sys.stdout.write("More Info:\n")
    sys.stdout.write("https://github.com/jedie/PyLucid#create-page-instance\n")
    sys.stdout.write("\n")
Exemple #3
0
def after_install(options, home_dir):
    # --- CUT here ---
    """
    called after virtualenv was created and setuptools installed.
    Now we installed PyLucid and used libs/packages.
    """
    a = AfterInstall(options, home_dir)
    a.install_packages()
    a.symlink_scripts()

    sys.stdout.write("\n")
    sys.stdout.write("PyLucid environment created in: %s\n" % c.colorize(home_dir, foreground="blue", opts=("bold",)))
    sys.stdout.write("\n")
    sys.stdout.write("Now you can create a new page instance, more info:\n")
    sys.stdout.write("http://www.pylucid.org/permalink/355/create-a-new-page-instance\n")
    sys.stdout.write("\n")