摘要:
使用按键win+e打开文件管理器,在上方路径栏输入: %APPDATA% 查看此目录下是否有pip目录,如果没有则需要创建,并在pip目录下以文本方式添加pip.ini文件。写入内容为 [global] index-url = https://pypi.tuna.tsinghua.edu.cn/si 阅读全文
摘要:
# coding:utf8 import matplotlib.pyplot as pltimport numpy as np # 先获取一个图表fig = plt.figure()stringabc = "test" # 设置x,y坐标轴的刻度显示范围plt.xlim(-7, 7)plt.ylim 阅读全文
摘要:
1、安装插件 需要安装的插件包括:Python (Microsoft)、Python Extension Pack (Don Jayamanne)、Pylance (Microsoft) 安装方法: 1)按Ctrl+Shift+X键,打扩展插件安装界面 2)搜索到需要安装的插件,然后点击 "安装" 阅读全文
摘要:
用numpy举例说明: 如果不需要代理:直接运行pip install numpy C:\Users\administrator>pip install numpy 如果需要代理:pip --proxy 代理地址 install numpy C:\Users\administrator>pip -- 阅读全文