Scipy不支持错误.无法加载json文件


import nltk
from nltk.stem import LancasterStemmer
import numpy as np
import tflearn as tf
import tensorflow
import random
import json
stemmer = LancasterStemmer

# Reading the json file
with open('intents.json') as f:
data = json.load(f)

错误消息:

WARNING:tensorflow:From /Users/collinrausch/Project/venv/lib/python3.8/site-packages/tensorflow/python/compat/v2_compat.py:96: disable_resource_variables (from tensorflow.python.ops.variable_scope) is deprecated and will be removed in a future version.
Instructions for updating:
non-resource variables are not supported in the long term
Scipy not supported!
Traceback (most recent call last):

File "/Users/collinrausch/Project/main.py", line 14, in <module>
data = json.load(f)

我刚刚用pip安装了Scippy。

最新更新