zoukankan      html  css  js  c++  java
  • [zz] Python 3.7 anaconda environment

    https://stackoverflow.com/questions/54175042/python-3-7-anaconda-environment-import-ssl-dll-load-fail-error

    C:UsersabhilAppDataLocalContinuumanaconda3envsHeisenbergPy37python.exe "C:Program FilesJetBrainsPyCharm Community Edition 2018.1.1helperspydevpydevconsole.py" --mode=client --port=63950
    Traceback (most recent call last):
    File "C:Program FilesJetBrainsPyCharm Community Edition 2018.1.1helperspydevpydevconsole.py", line 5, in <module>
    from _pydev_comm.rpc import make_rpc_client, start_rpc_server, start_rpc_server_and_make_client
    File "C:Program FilesJetBrainsPyCharm Community Edition 2018.1.1helperspydev\_pydev_comm pc.py", line 4, in <module>
    from _pydev_comm.server import TSingleThreadedServer
    File "C:Program FilesJetBrainsPyCharm Community Edition 2018.1.1helperspydev\_pydev_commserver.py", line 4, in <module>
    from _shaded_thriftpy.server import TServer
    File "C:Program FilesJetBrainsPyCharm Community Edition 2018.1.1helpers hird_party hriftpy\_shaded_thriftpyserver.py", line 9, in <module>
    from _shaded_thriftpy.transport import (
    File "C:Program FilesJetBrainsPyCharm Community Edition 2018.1.1helpers hird_party hriftpy\_shaded_thriftpy ransport\__init__.py", line 57, in <module>
    from .sslsocket import TSSLSocket, TSSLServerSocket # noqa
    File "C:Program FilesJetBrainsPyCharm Community Edition 2018.1.1helpers hird_party hriftpy\_shaded_thriftpy ransportsslsocket.py", line 7, in <module>
    import ssl
    File "C:UsersabhilAppDataLocalContinuumanaconda3envsHeisenbergPy37libssl.py", line 98, in <module>
    import _ssl # if we can't import it, let the error propagate
    ImportError: DLL load failed: The specified module could not be found.
    Process finished with exit code 1

    D:Anaconda3python.exe "D:Program FilesJetBrainsPyCharm 2018.3.3helperspydevpydevconsole.py" --mode=client --port=55113
    Traceback (most recent call last):
    File "D:Program FilesJetBrainsPyCharm 2018.3.3helperspydevpydevconsole.py", line 5, in <module>
    from _pydev_comm.rpc import make_rpc_client, start_rpc_server, start_rpc_server_and_make_client
    File "D:Program FilesJetBrainsPyCharm 2018.3.3helperspydev\_pydev_comm pc.py", line 4, in <module>
    from _pydev_comm.server import TSingleThreadedServer
    File "D:Program FilesJetBrainsPyCharm 2018.3.3helperspydev\_pydev_commserver.py", line 4, in <module>
    from _shaded_thriftpy.server import TServer
    File "D:Program FilesJetBrainsPyCharm 2018.3.3helpers hird_party hriftpy\_shaded_thriftpyserver.py", line 9, in <module>
    from _shaded_thriftpy.transport import (
    File "D:Program FilesJetBrainsPyCharm 2018.3.3helpers hird_party hriftpy\_shaded_thriftpy ransport\__init__.py", line 57, in <module>
    from .sslsocket import TSSLSocket, TSSLServerSocket # noqa
    File "D:Program FilesJetBrainsPyCharm 2018.3.3helpers hird_party hriftpy\_shaded_thriftpy ransportsslsocket.py", line 7, in <module>
    import ssl
    File "D:Anaconda3libssl.py", line 98, in <module>
    import _ssl # if we can't import it, let the error propagate
    ImportError: DLL load failed: 找不到指定的模块。
    Process finished with exit code 1

    This can be fixed by manually adding in the PATH variables in PyCharm to the console.

    1. Open your Anaconda cmd
    2. Activate your Conda environment
    3. Get the full PATH value by typing echo %PATH%
      • if you are on Windows 7/can't copy the output, cd the cmd to your desktop and type echo %PATH% > path_val.txt
      • this will create a txt file so you can copy/paste the values easier.
    4. In PyCharm, go to Settings -> Build, Execution, Deployment -> Console -> Python Console -> click the folder on the right of Environment variables.
    5. Click the plus button to add a new Environment Variable
      • The name should be PATH
      • The value is the entire output from the echo %PATH% command above.
    6. Click OK, then apply.
  • 相关阅读:
    Leetcode788.Rotated Digits旋转数字
    Leetcode788.Rotated Digits旋转数字
    Leetcode796.Rotate String旋转字符串
    Leetcode796.Rotate String旋转字符串
    Leetcode784.Letter Case Permutation字母大小写全排列
    Leetcode784.Letter Case Permutation字母大小写全排列
    Leetcode771.Jewels and Stones宝石与石头
    Leetcode771.Jewels and Stones宝石与石头
    Leetcode724.Find Pivot Index寻找数组的中心索引
    Leetcode724.Find Pivot Index寻找数组的中心索引
  • 原文地址:https://www.cnblogs.com/xfzhang/p/10629787.html
Copyright © 2011-2022 走看看