python_linux系统相关配置

Posted 口天丶木乔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python_linux系统相关配置相关的知识,希望对你有一定的参考价值。

安装anoconda

  1. 极速下载安装

    https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 网站极速下载。
    
    bash Anaconda3-4.3.1-Linux-x86.sh 
  2. 设定默认conda源(用于之后的conda极速安装相关python包)

    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
    
    conda config --set show_channel_urls yes
  3. 更改pip源

    pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple
    
        阿里云 http://mirrors.aliyun.com/pypi/simple/ 
    ??中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 
    ??豆瓣(douban) http://pypi.douban.com/simple/ 
    ??清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 
    ??中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
  4. 定位当前python包路径(在当前python下运行)

    from distutils.sysconfig import get_python_lib
    
    print(get_python_lib())

以上是关于python_linux系统相关配置的主要内容,如果未能解决你的问题,请参考以下文章

从零开始配置vim(27)——代码片段

从零开始配置vim(27)——代码片段

python小工具

Express实战 - 应用案例- realworld-API - 路由设计 - mongoose - 数据验证 - 密码加密 - 登录接口 - 身份认证 - token - 增删改查API(代码片段

VSCode自定义代码片段11——vue路由的配置

VSCode自定义代码片段11——vue路由的配置