Skip to content

Latest commit

 

History

History
58 lines (48 loc) · 1.98 KB

实验课补充知识.md

File metadata and controls

58 lines (48 loc) · 1.98 KB

数据科学与工程导论实验课程补充知识点清单

  1. pip换源 pip 是python的包管理工具,借助pip工具可以轻松获取python的一些包,例如numpy,pandas等。 但是由于一些网络问题,在国内使用pip的下载的速度会比较慢,因此需要换成国内源。 这里我们讲解两种方式使用国内源
  • 临时使用 例如我们想安装numpy包,我们可以通过添加参数-i来指定源 完整指令如下:
pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple

其中https://pypi.tuna.tsinghua.edu.cn/simple为清华大学pypi镜像地址 这里列举出几个常用的镜像源

pypi 清华大学源:https://pypi.tuna.tsinghua.edu.cn/simple

pypi 豆瓣源 :http://pypi.douban.com/simple/

pypi 腾讯源:http://mirrors.cloud.tencent.com/pypi/simple

pypi 阿里源:https://mirrors.aliyun.com/pypi/simple/

  • 如果大家不想每次都用临时源,可以通过pip的设置进行修改
# 清华源  pip configsetglobal.index-url https://pypi.tuna.tsinghua.edu.cn/simple

# 阿里源  pip configsetglobal.index-url https://mirrors.aliyun.com/pypi/simple/

# 腾讯源  pip configsetglobal.index-url http://mirrors.cloud.tencent.com/pypi/simple

# 豆瓣源  pip configsetglobal.index-url http://pypi.douban.com/simple/
  • 其他的一些修改方式: windows下,直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,然后新建文件pip.ini,即 %HOMEPATH%\pip\pip.ini,输入或修改内容如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn

Linux/mac 通过修改~/.pip/pip.conf,修改内容为

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
  1. 运行Python文件的几种方式
  • jupyterlab
  • Python文件.py格式执行
  • 交互式命令行
  1. 如何使用markdown文件做笔记

https://markdown.com.cn/