NesiaChan / lib.py
RikyXDZ's picture
Create lib.py
69cd8fe
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")