spaCy/spacy/cli/link.py

64 lines
3.0 KiB
Python
Raw Normal View History

# coding: utf8
from __future__ import unicode_literals
import plac
2017-03-18 14:59:21 +03:00
from pathlib import Path
2017-05-08 00:25:29 +03:00
from ..compat import symlink_to, path2str
from ..util import prints
from .. import util
@plac.annotations(
origin=("package name or local path to model", "positional", None, str),
link_name=("name of shortuct link to create", "positional", None, str),
2017-10-27 15:38:39 +03:00
force=("force overwriting of existing link", "flag", "f", bool))
def link(origin, link_name, force=False, model_path=None):
"""
Create a symlink for models within the spacy/data directory. Accepts
either the name of a pip package, or the local path to the model data
directory. Linking models allows loading them via spacy.load(link_name).
"""
2017-05-08 00:25:29 +03:00
if util.is_package(origin):
2017-06-04 14:45:50 +03:00
model_path = util.get_package_path(origin)
else:
model_path = Path(origin) if model_path is None else Path(model_path)
2017-04-16 21:53:25 +03:00
if not model_path.exists():
2017-05-08 00:25:29 +03:00
prints("The data should be located in %s" % path2str(model_path),
title="Can't locate model data", exits=1)
data_path = util.get_data_path()
if not data_path or not data_path.exists():
spacy_loc = Path(__file__).parent.parent
prints("Make sure a directory `/data` exists within your spaCy "
"installation and try again. The data directory should be "
"located here:", path2str(spacy_loc), exits=1,
title="Can't find the spaCy data path to create model symlink")
2017-03-18 20:57:31 +03:00
link_path = util.get_data_path() / link_name
if link_path.is_symlink() and not force:
2017-05-08 00:25:29 +03:00
prints("To overwrite an existing link, use the --force flag.",
title="Link %s already exists" % link_name, exits=1)
elif link_path.is_symlink(): # does a symlink exist?
# NB: It's important to check for is_symlink here and not for exists,
# because invalid/outdated symlinks would return False otherwise.
2017-03-18 20:57:31 +03:00
link_path.unlink()
elif link_path.exists(): # does it exist otherwise?
# NB: Check this last because valid symlinks also "exist".
prints("This can happen if your data directory contains a directory "
"or file of the same name.", link_path,
title="Can't overwrite symlink %s" % link_name, exits=1)
try:
symlink_to(link_path, model_path)
except:
2017-05-08 00:25:29 +03:00
# This is quite dirty, but just making sure other errors are caught.
prints("Creating a symlink in spacy/data failed. Make sure you have "
"the required permissions and try re-running the command as "
2017-10-27 15:38:39 +03:00
"admin, or use a virtualenv. You can still import the model as "
"a module and call its load() method, or create the symlink "
"manually.",
2017-05-08 00:25:29 +03:00
"%s --> %s" % (path2str(model_path), path2str(link_path)),
title="Error: Couldn't link model to '%s'" % link_name)
2017-04-16 23:28:16 +03:00
raise
2017-05-08 00:25:29 +03:00
prints("%s --> %s" % (path2str(model_path), path2str(link_path)),
2017-06-04 14:45:50 +03:00
"You can now load the model via spacy.load('%s')" % link_name,
2017-05-08 00:25:29 +03:00
title="Linking successful")