1、国内镜像
清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 华中理工大学:http://pypi.hustunique.com/ 山东理工大学:http://pypi.sdutlinux.org/ 豆瓣:http://pypi.douban.com/simple/ 例如:pip3 install -i https://pypi.doubanio.com/simple/ 包名2、软件安装
安装Anconda软件,官网下载地址
3、创建新环境conda create -n python_3.6_tf.2.0_byall python=3.64、PyPi官网
相关包安装下载地址:PyPI · The Python Package Index
5、激活环境activate python_study_3.6 activate python_study_3.6gpu
查看安装的包
pip freeze
以下是开发中用到的资源包,完善中....
基础包 numpy
pip install numpypandas
pip install pandas画图 matplotlib
pip install matplotlibTensorFlow 1.x版本
使用CPU(慢点) 计算的时候:tensorflow 1.9.5
pip install tensorflow==1.9.0
使用GPU(快点)计算的时候:tensorflow-gpu 1.15
pip install tensorflow-gpu==1.15TensorFlow2.x版本
pip install tensorflow==2.3.1captcha
生成验证码的包
# 生成验证码的包 pip install captcha文件读取
配置文件yaml
pip install pyyaml控制台输出显示进度条
pip install tqdm软件界面GUI
pip install PyQt5机器学习
sklearn
pip install sklearn2计算机视觉 cv
opencv-python 4.4.0.44 pip install opencv-python pip install opencv-python==4.4.0.44语音识别
人声读文字
pip install pypiwin32
处理语音文件,把音频文件转为频谱图,提取语音数据
pip install librosa



