pycharm连接不上Python Console,但是用可以运行.py文件,Anaconda的命令行也可以跑python命令

报错信息:

Traceback (most recent call last):
File “D:\PyCharm Edu 2020.3.3\plugins\python-ce\helpers\pydev\pydevconsole.py”, line 5, in
from _pydev_comm.pydev_rpc import make_rpc_client, start_rpc_server, start_rpc_server_and_make_client
File “D:\PyCharm Edu 2020.3.3\plugins\python-ce\helpers\pydev_pydev_comm\pydev_rpc.py”, line 4, in
from _pydev_comm.pydev_server import TSingleThreadedServer
File “D:\PyCharm Edu 2020.3.3\plugins\python-ce\helpers\pydev_pydev_comm\pydev_server.py”, line 4, in
from _shaded_thriftpy.server import TServer
File “D:\PyCharm Edu 2020.3.3\plugins\python-ce\helpers\third_party\thriftpy_shaded_thriftpy\server.py”, line 9, in
from shaded_thriftpy.transport import (
File "D:\PyCharm Edu 2020.3.3\plugins\python-ce\helpers\third_party\thriftpy_shaded_thriftpy\transport_init
.py", line 57, in
from .sslsocket import TSSLSocket, TSSLServerSocket # noqa
File “D:\PyCharm Edu 2020.3.3\plugins\python-ce\helpers\third_party\thriftpy_shaded_thriftpy\transport\sslsocket.py”, line 7, in
import ssl
File “D:\Anaconda\lib\ssl.py”, line 98, in
import _ssl # if we can’t import it, let the error propagate
ImportError: DLL load failed while importing _ssl: 找不到指定的程序。

解决方案

原文:https://stackoverflow.com/questions/54175042/python-3-7-anaconda-environment-import-ssl-dll-load-fail-error
把下列文件从anaconda\Library\bin复制到anaconda/DLLs下

  • libcrypto-1_1-x64.dll
  • libssl-1_1-x64.dll

你可能感兴趣的:(pycharm连接不上Python Console,但是用可以运行.py文件,Anaconda的命令行也可以跑python命令)