mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-28 09:38:17 +00:00
chore: update lock file and add dependency check script
Co-Authored-By: João <joao@crewai.com>
This commit is contained in:
39
check_deps.py
Normal file
39
check_deps.py
Normal file
@@ -0,0 +1,39 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
print("Checking optional dependencies availability:")
|
||||
|
||||
try:
|
||||
import chromadb
|
||||
print('chromadb: AVAILABLE')
|
||||
except ImportError:
|
||||
print('chromadb: NOT AVAILABLE')
|
||||
|
||||
try:
|
||||
import pdfplumber
|
||||
print('pdfplumber: AVAILABLE')
|
||||
except ImportError:
|
||||
print('pdfplumber: NOT AVAILABLE')
|
||||
|
||||
try:
|
||||
import pyvis
|
||||
print('pyvis: AVAILABLE')
|
||||
except ImportError:
|
||||
print('pyvis: NOT AVAILABLE')
|
||||
|
||||
try:
|
||||
import opentelemetry
|
||||
print('opentelemetry: AVAILABLE')
|
||||
except ImportError:
|
||||
print('opentelemetry: NOT AVAILABLE')
|
||||
|
||||
try:
|
||||
import auth0
|
||||
print('auth0: AVAILABLE')
|
||||
except ImportError:
|
||||
print('auth0: NOT AVAILABLE')
|
||||
|
||||
try:
|
||||
import aisuite
|
||||
print('aisuite: AVAILABLE')
|
||||
except ImportError:
|
||||
print('aisuite: NOT AVAILABLE')
|
||||
Reference in New Issue
Block a user