2016-01-15 17:01:02 +00:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2015-10-18 10:35:04 +00:00
|
|
|
import sys
|
2015-01-02 10:44:41 +00:00
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
|
2015-11-15 14:58:21 +00:00
|
|
|
import plac
|
2016-01-14 11:02:56 +00:00
|
|
|
import sputnik
|
2016-01-16 11:23:45 +00:00
|
|
|
from sputnik.package_list import (PackageNotFoundException,
|
|
|
|
CompatiblePackageNotFoundException)
|
2016-01-14 11:02:56 +00:00
|
|
|
|
|
|
|
from .. import about
|
2015-10-18 10:35:04 +00:00
|
|
|
|
2015-01-02 10:44:41 +00:00
|
|
|
|
2015-11-15 14:58:21 +00:00
|
|
|
def migrate(path):
|
|
|
|
data_path = os.path.join(path, 'data')
|
2015-12-18 08:49:45 +00:00
|
|
|
if os.path.isdir(data_path):
|
|
|
|
if os.path.islink(data_path):
|
|
|
|
os.unlink(data_path)
|
|
|
|
else:
|
|
|
|
shutil.rmtree(data_path)
|
2015-11-15 14:58:21 +00:00
|
|
|
for filename in os.listdir(path):
|
2015-11-18 16:35:21 +00:00
|
|
|
if filename.endswith('.tgz'):
|
2015-11-15 14:58:21 +00:00
|
|
|
os.unlink(os.path.join(path, filename))
|
2015-01-30 07:04:01 +00:00
|
|
|
|
2015-01-17 05:21:17 +00:00
|
|
|
|
2015-10-18 10:35:04 +00:00
|
|
|
@plac.annotations(
|
|
|
|
force=("Force overwrite", "flag", "f", bool),
|
|
|
|
)
|
2015-11-18 16:35:21 +00:00
|
|
|
def main(data_size='all', force=False):
|
2015-11-15 14:58:21 +00:00
|
|
|
if force:
|
2016-02-15 00:33:39 +00:00
|
|
|
sputnik.purge(about.__title__, about.__version__)
|
2015-11-15 14:58:21 +00:00
|
|
|
|
2016-01-16 11:23:45 +00:00
|
|
|
try:
|
2016-02-15 00:33:39 +00:00
|
|
|
sputnik.package(about.__title__, about.__version__, about.__default_model__)
|
2016-01-16 11:23:45 +00:00
|
|
|
print("Model already installed. Please run 'python -m "
|
|
|
|
"spacy.en.download --force' to reinstall.", file=sys.stderr)
|
|
|
|
sys.exit(1)
|
2016-01-16 11:44:53 +00:00
|
|
|
except (PackageNotFoundException, CompatiblePackageNotFoundException):
|
2016-01-16 11:23:45 +00:00
|
|
|
pass
|
|
|
|
|
2016-02-15 00:33:39 +00:00
|
|
|
package = sputnik.install(about.__title__, about.__version__, about.__default_model__)
|
2016-01-15 17:01:02 +00:00
|
|
|
|
|
|
|
try:
|
2016-02-15 00:33:39 +00:00
|
|
|
sputnik.package(about.__title__, about.__version__, about.__default_model__)
|
2016-01-16 11:44:53 +00:00
|
|
|
except (PackageNotFoundException, CompatiblePackageNotFoundException):
|
2016-01-15 17:01:02 +00:00
|
|
|
print("Model failed to install. Please run 'python -m "
|
|
|
|
"spacy.en.download --force'.", file=sys.stderr)
|
|
|
|
sys.exit(1)
|
2015-10-20 17:11:29 +00:00
|
|
|
|
2015-11-15 14:58:21 +00:00
|
|
|
# FIXME clean up old-style packages
|
2016-01-16 11:23:45 +00:00
|
|
|
migrate(os.path.dirname(os.path.abspath(__file__)))
|
2015-10-18 10:35:04 +00:00
|
|
|
|
2016-01-15 17:01:02 +00:00
|
|
|
print("Model successfully installed.", file=sys.stderr)
|
|
|
|
|
2015-01-02 10:44:41 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2015-01-31 02:51:56 +00:00
|
|
|
plac.call(main)
|