mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
321 B
10 lines
321 B
6 years ago
|
import sys
|
||
|
|
||
|
try:
|
||
|
from fastText import load_model
|
||
|
from fastText import train_unsupervised
|
||
|
except ImportError:
|
||
|
print("ERROR: in order to use slither-simil, you need to install fastText 0.2.0:")
|
||
|
print("$ pip3 install https://github.com/facebookresearch/fastText/archive/0.2.0.zip --user\n")
|
||
|
sys.exit(-1)
|