(ChatterBot) 由于环境错误,无法安装软件包。[Errno 13] Permission denied:

问题描述 投票:0回答:1

我试图在PyCharm中使用ChatterBot 但当运行一个简单的示例程序时

from chatterbot import ChatBot

chatbot= ChatBot("Josie")

from chatterbot.trainers import ListTrainer

conversation = ["Hello","Hi There",
               "How are you doing?", "I'm doing great.",
               "That is good to hear", "Thank you.", "You're welcome."]

trainer = ListTrainer(chatbot)

trainer.train(conversation)

response = chatbot.get_response("Good morning!")
print (response)

我收到了这个运行时错误。

/Users/williams/PycharmProjects/test_1/venv/bin/python /Users/williams/PycharmProjects/test_1/test_1.py
[nltk_data] Error loading stopwords: <urlopen error [SSL:
[nltk_data]     CERTIFICATE_VERIFY_FAILED] certificate verify failed:
[nltk_data]     unable to get local issuer certificate (_ssl.c:1076)>
[nltk_data] Error loading wordnet: <urlopen error [SSL:
[nltk_data]     CERTIFICATE_VERIFY_FAILED] certificate verify failed:
[nltk_data]     unable to get local issuer certificate (_ssl.c:1076)>
[nltk_data] Error loading averaged_perceptron_tagger: <urlopen error
[nltk_data]     [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify
[nltk_data]     failed: unable to get local issuer certificate
[nltk_data]     (_ssl.c:1076)>
Traceback (most recent call last):
 File "/Users/williams/PycharmProjects/test_1/venv/lib/python3.7/site-packages/nltk/corpus/util.py", line 83, in __load
List Trainer: [######              ] 29%    root = nltk.data.find("{}/{}".format(self.subdir, zip_name))
 File "/Users/williams/PycharmProjects/test_1/venv/lib/python3.7/site-packages/nltk/data.py", line 585, in find
   raise LookupError(resource_not_found)
LookupError: 
**********************************************************************
 Resource stopwords not found.
 Please use the NLTK Downloader to obtain the resource:

 >>> import nltk
 >>> nltk.download('stopwords')

 For more information see: https://www.nltk.org/data.html

 Attempted to load corpora/stopwords.zip/stopwords/

我运行了下面的代码

import nltk
nltk.download('stopwords')

但还是得到了错误信息 "SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1076)>"

我试过用 /Applications/Python\ 3.7/Install\ Certificates.command 但我又得到一个错误。

enter image description here

我想搞清楚这个问题都快疯了。任何帮助都将被感激。

python pycharm chatterbot certifi
1个回答
0
投票

用用户选项试试。

pip install --upgrade --user certifi 试试用用户选项:

© www.soinside.com 2019 - 2024. All rights reserved.