mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
from __future__ import print_function
|
|
|
|
import sys
|
|
|
|
import sputnik
|
|
from sputnik.package_list import (PackageNotFoundException,
|
|
CompatiblePackageNotFoundException)
|
|
|
|
from . import about
|
|
|
|
|
|
def download(lang, force=False, fail_on_exist=True):
|
|
if force:
|
|
sputnik.purge(about.__title__, about.__version__)
|
|
|
|
try:
|
|
sputnik.package(about.__title__, about.__version__, about.__models__[lang])
|
|
if fail_on_exist:
|
|
print("Model already installed. Please run 'python -m "
|
|
"spacy.%s.download --force' to reinstall." % lang, file=sys.stderr)
|
|
sys.exit(0)
|
|
except (PackageNotFoundException, CompatiblePackageNotFoundException):
|
|
pass
|
|
|
|
package = sputnik.install(about.__title__, about.__version__, about.__models__[lang])
|
|
|
|
try:
|
|
sputnik.package(about.__title__, about.__version__, about.__models__[lang])
|
|
except (PackageNotFoundException, CompatiblePackageNotFoundException):
|
|
print("Model failed to install. Please run 'python -m "
|
|
"spacy.%s.download --force'." % lang, file=sys.stderr)
|
|
sys.exit(1)
|
|
|
|
print("Model successfully installed.", file=sys.stderr)
|