• sublime text3 配置conda环境


    sublime text3 配置conda环境

    1. 安装conda插件

    ctrl + shift + p 后 输入 Package Control : Install Package,然后在弹出的输入框中输入conda,选择 conda然后回车安装,安装完成会跳出一个介绍界面

    2. 修改编译环境

    菜单栏选择 Tools -> Build System -> Conda

    3. 修改Conda环境配置

    菜单栏依次选择Preferences -> Package Settings -> Conda -> Setting-User ,输入如下配置:

    // Default settings for sublime-text-conda:
    {
    // executable is the path to anaconda's python
    // this python executable is used in order to find conda
    //"executable": "~/anaconda3/bin/python3",
    "executable": "E:/Anaconda3/python",
    
    // Directory in which the conda envs are stored
    // Default location is the user's home directory
    //"environment_directory": "~/anaconda3/envs/",
    "environment_directory": "E:/Anaconda3/envs/",
    
    // configuration is the path to conda's configuration file
    "configuration": "~/.condarc"
    }
    

    其中"executable""environment_directory"按自己实际anaconda3安装路径配置

    4. 激活conda环境

    ctrl + shift + p 后输入conda能看到conda的各种命令,选择Activate Environment后会出现你已经安装conda环境,选择即可激活

    若启动失效,重启sublime text3即可

  • 相关阅读:
    URLs
    上班确实累!!!
    转: java 双向map
    HttpReader
    QQ龙虎榜数据接口
    简易行情界面
    下载新浪的行情数据
    淘宝上的大智慧L2数据,月卡最便宜是8元钱,这个也可以获取BBD、DDX等数据!
    获取历史K线数据的几个方法
    好久不写博了.
  • 原文地址:https://www.cnblogs.com/lzping/p/12874553.html
Copyright © 2020-2023  润新知