Skip to content

Commit 9f661d9

Browse files
committed
nltk
1 parent fbb68b4 commit 9f661d9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

npcsh/helpers.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
import subprocess
66
import platform
77
import yaml
8-
import nltk
8+
9+
try:
10+
import nltk
11+
except:
12+
print("Error importing nltk")
913
import numpy as np
1014

1115
import filecmp

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ def get_setup_message():
8585
"kuzu",
8686
"chromadb",
8787
"diffusers",
88+
"nltk",
8889
]
8990

9091
# Voice/Audio requirements

0 commit comments

Comments
 (0)