requirements.txt 480 B

123456789101112131415161718
  1. # Cd预测集成系统依赖包
  2. numpy>=1.21.0
  3. pandas>=1.3.0
  4. torch>=1.9.0
  5. scikit-learn>=1.0.0
  6. geopandas>=0.10.0
  7. rasterio>=1.2.0
  8. matplotlib>=3.4.0
  9. seaborn>=0.11.0
  10. shapely>=1.7.0
  11. fastapi>=0.68.0
  12. uvicorn>=0.15.0 # 启动服务的工具
  13. numpy>=1.21.0 # 项目里用到的库
  14. pandas>=1.3.0 # 项目里用到的库
  15. # 数据库依赖(如果项目连PostgreSQL,还需要)
  16. psycopg2-binary # Python连接PostgreSQL的驱动
  17. sqlalchemy # ORM工具(如果用了)