解决conda active命令报错

打开miniconda3/Scriptes/conda-script.py文件添加DLL搜索路径

if __name__ == '__main__':

    import os

    file_path = os.path.abspath(__file__)

    root_dir = os.path.dirname(file_path)

    print('root_dir:' + root_dir)

    sys.path.append(os.path.join(root_dir, '../DLL'))

    from conda.cli import main

    sys.exit(main())

你可能感兴趣的:(java,服务器,前端)