File size: 445 Bytes
69cd8fe
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import os
print("\x1b[0;32mCreated by Riky Ripaldo")
print("Downloading Library...")

os.system("pip3 install --upgrade pip")
try:
    import torch
except ModuleNotFoundError:
    os.system("pip3 install torch")

try:
    import nltk
except ModuleNotFoundError:
    os.system("pip3 install nltk")

try:
    import transformers
except ModuleNotFoundError:
    os.system("pip3 install transformers")

print("\x1b[0;93mDownloading Library Success")