Skip to content
local_install.py 1.96 KiB
Newer Older
#!/usr/bin/env python3
import os
import subprocess
import sys

if '--local-modules' in sys.argv:
    local_modules = True
    sys.argv.remove('--local-modules')
else:
    local_modules = False

print("Woob local installer")
if len(sys.argv) < 2:
Edward Betts's avatar
Edward Betts committed
    print("This tool will install Woob to be usable without requiring")
    print("messing with your system, which should only be touched by a package manager.")
    print()
    print("Usage: %s DESTINATION" % sys.argv[0])
    print("Error: Please provide a destination, "
          "for example ‘%s/bin’" % os.getenv('HOME'), file=sys.stderr)
    sys.exit(1)
else:
    dest = os.path.expanduser(sys.argv[1])

print("Installing woob applications into ‘%s’." % dest)

if local_modules:
    sourceslist = os.path.join(
        os.environ.get('XDG_CONFIG_HOME', os.path.join(os.path.expanduser('~'), '.config')),
    if not os.path.isdir(os.path.dirname(sourceslist)):
        os.makedirs(os.path.dirname(sourceslist))
    if not os.path.exists(sourceslist):
        with open(sourceslist, 'w') as f:
            f.write('file://' + os.path.realpath(
                os.path.join(os.path.dirname(__file__), os.pardir, 'modules')
            ))

subprocess.check_call(
    [sys.executable, "-m", "pip", "install", "--user", "."] + sys.argv[2:],
    cwd=os.path.join(os.path.dirname(__file__), os.pardir))

binpath = os.environ.get("XDG_DATA_HOME", os.path.join(os.path.expanduser("~"), ".local", "bin"))
shutil.copy2(os.path.join(binpath, "woob"), dest)

subprocess.call([sys.executable, os.path.join(dest, 'woob'), 'config', 'update'])
print()
print("Installation done. Applications are available in ‘%s’." % dest)
print("You can remove the source files.")
print()
print("To have easy access to the Woob applications,")
print("you should add the following line to your ~/.bashrc or ~/.zshrc file:")
print("export PATH=\"$PATH:%s\"" % dest)
print("And then restart your shells.")