#-----------------------------------------------------------------------------
|
# Copyright (c) 2013-2020, PyInstaller Development Team.
|
#
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
# you may not use this file except in compliance with the License.
|
#
|
# The full license is in the file COPYING.txt, distributed with this software.
|
#
|
# SPDX-License-Identifier: Apache-2.0
|
#-----------------------------------------------------------------------------
|
|
|
import sys
|
import os
|
import nltk
|
|
#add the path to nltk_data
|
nltk.data.path.append(os.path.join(sys._MEIPASS, "nltk_data"))
|