
Python
vkingnew
Learning......
展开
-
pip 报错: Read timed out
报错信息: pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.原因:默认的超时时间较短,还有就是默认读取的pypi的网址,在国内的网络速度较慢。解决办法: pip install beautifulsoup4 --default-timeout=100 -i http://py原创 2021-01-15 12:17:39 · 361 阅读 · 0 评论 -
numpy报错
报错信息:RuntimeError: The current Numpy installation ('C:\\soft\\Python\\Python38\\lib\\site-packages\\numpy\\__init__.py') fails to pass a sanity check due to a bug in the windows runtime. See this issue for more information: https://tinyurl.com/y3dm3h86原创 2020-12-17 12:51:39 · 793 阅读 · 0 评论 -
Jupyter Notebook 在Windows下的安装和使用
Jupyter Notebook支持两种安装方式,支持conda 和pip,而pip 则更加通用和常见。pip的安装:C:\>pip install jupyterlab notebook voila -i http://pypi.douban.com/simple --trusted-host pypi.douban.com由于在国内需要去官方网站下载资源,网速较慢可以使用国内的镜像网站的资源。pip install jupyterlab notebook voila -i htt原创 2020-12-17 11:25:30 · 3183 阅读 · 0 评论 -
python3.6 ztsd
#pip3 install zstd# pip list | grep -i zstdzstd 1.4.0.0 ]# python3Python 3.6.6 (default, Mar 29 2019, 00:03:27) [GCC 4.8.5 20150623 (Red Hat 4.8.5-36)] on linuxType "help"...原创 2019-05-08 17:53:12 · 1640 阅读 · 0 评论 -
python3.6 snappy
## yum -y install snappy snappy-devel gcc gcc-c++ cpp# rpm -qa | grep -i snappysnappy-1.1.0-3.el7.x86_64snappy-devel-1.1.0-3.el7.x86_64#pip install snapp python-snappy# pip list | grep -i snap...原创 2019-05-08 17:49:23 · 1459 阅读 · 0 评论 -
python 连接 Neo4j 的接口
neo4j 提供如下编程语言的API:gojavapython.NETJavascript此外还提供REST、HTTP API# pip install neo4j-driverCollecting neo4j-driver Downloading https://files.pythonhosted.org/packages/77/ac/b8b9dbe470624...原创 2019-04-30 16:45:52 · 2842 阅读 · 0 评论 -
Python MySQL的连接器(待完善)
MySQL官方发布的MySQL-connector:开源的pymysql历史悠久的MySQL-python常用的pymysql:https://github.com/PyMySQL/PyMySQL参考资料:https://dev.mysql.com/doc/connector-python/en/connector-python-versions.html...原创 2019-04-30 16:25:21 · 754 阅读 · 0 评论 -
python中的实用工具 汉字转拼音、地址、电话、二维码
汉字转拼音:#pip install pypinyin#python将汉字翻译为带声调的拼音:>>> from pypinyin import pinyin, lazy_pinyin, Style>>> pinyin("武汉市中心")[['wǔ'], ['hàn'], ['shì'], ['zhōng'], ['xīn']]>>...原创 2019-04-30 15:50:35 · 478 阅读 · 0 评论 -
人脸识别软件安装(Dlib和openCV)
windows下需要实现安装vc++ 2014.windows下python36版本:注意:dlib的其他版本需要安装cmake才可以安装windows 版本的dlib只提供到最新的19.7.0版本,更新的版本么有提供安装包需要自己编译。pip install dlib==19.7.0pip install -U scikit-imagepip install face_recogn...原创 2019-05-06 10:26:48 · 630 阅读 · 0 评论 -
Python 3.6 连接MySQL 8.0.16
直接在linux下进行yum安装python3.6版本和MySQL8.0.16版本.连接器采用MySQL官方发布的mysql-connector-python# rpm -ivh https://repo.mysql.com//mysql80-community-release-el7-2.noarch.rpm# wget -O /etc/yum.repos.d/epel.rep...原创 2019-04-30 17:43:27 · 2573 阅读 · 0 评论 -
pymysql 连接MySQL 8.0.16
测试连接:import pymysqldef pyconn(): # 打开数据库连接 conn = pymysql.connect( host="197.255.20.215", user="root", password="oracle", database="wuhan", port=3306) # 使用 cursor() ...原创 2019-04-30 18:03:12 · 2236 阅读 · 0 评论 -
python3.6 日期时间格式化
获取当前日期:time.time()获取元组形式的时间戳:time.local(time.time())格式化日期的函数(基于元组的形式进行格式化):(1)time.asctime(time.local(time.time()))(2)time.strftime(format[,t])将格式字符串转换为时间戳:time.strptime(str,fmt='%a %b %d ...原创 2019-05-07 14:36:16 · 7417 阅读 · 0 评论 -
python3 与主流大数据组件
大数据领域主要是以java为主,次要的编程语言为python,scala等,本文介绍和python相关的大数据:python所需要的版本为python3.6:数据源:MySQL:oracle:MS SQL server:postgresql: pip install psycopg2MongoDB:Neo4J:Redis:大数据处理:Hadoop:(HDFS、Map...原创 2019-05-21 12:00:41 · 920 阅读 · 0 评论 -
windows下Microsoft Visual C++ 14.0 is required
背景:windows下安装python相关的软件包的时候使用pip安装scrapy等软件包,依赖twisted等C++编写的程序时候: error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.microsoft.com...原创 2019-05-06 00:25:09 · 46458 阅读 · 14 评论 -
pip 使用国内的源站
国内的pypi镜像站点:阿里云 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/...原创 2019-05-05 23:46:22 · 2134 阅读 · 0 评论 -
Python36 初步
程序和输入:# cat helloworld.py #!/usr/bin/env python3print("hello, world")--执行程序查看输出:# python36 helloworld.py hello, world--输入:# cat input.py var = input('please enter your name: ')print('hell...原创 2018-10-19 12:18:04 · 582 阅读 · 0 评论 -
Centos7 安装TensorFlow 1.11版本
1.安装python3.6版本:2.修改配置:由于pip默认是从国外的网站下载软件,可以指向国内的镜像网站。# mkdir -p /root/.pip# cat /root/.pip/pip.conf [global]index-url = https://pypi.mirrors.ustc.edu.cn/simple/[install]trusted-host=mirrors...原创 2018-10-24 00:25:37 · 2311 阅读 · 0 评论 -
TensorFlow1.11版本:import tensorflow 报错:illegal instruction
>>> import tensorflow as tf Illegal instruction运行环境:--原因:降级使用:pip3 uninstall tensorflowpip3 install tensorflow==1.5.0# pip3 install tensorflow==1.5.0Looking in indexes: https://...原创 2018-10-24 00:43:02 · 1602 阅读 · 0 评论 -
Python3 报错:Cannot uninstall 'numpy'. It is a distutils installed project and thus we cannot accurate
报错信息:Cannot uninstall 'numpy'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.--背景:在安装TensorFlow的...原创 2018-11-02 00:55:19 · 8842 阅读 · 1 评论 -
python中pip 升级 安装 卸载 等操作
C:\Windows\System32>pip --versionpip 18.1 from c:\dev\python36\lib\site-packages\pip (python 3.6)C:\Windows\System32>python --versionPython 3.6.6pip软件的升级:python -m pip install --upgrade ...原创 2019-01-11 10:18:39 · 1256 阅读 · 0 评论 -
安装机器学习框架scikit-learn
运行环境:windows 10+python3.6Scikit-learn requires:Python (>= 2.7 or >= 3.4),NumPy (>= 1.8.2),SciPy (>= 0.13.3).C:\Windows\System32>pip install -U scikit-learnCollecting scikit-lea...原创 2019-01-11 11:09:33 · 423 阅读 · 0 评论 -
python3 报错 AttributeError: '_NamespacePath' object has no attribute 'sort'
运行环境:centos7 +python3.6.6## pip3 install googleapis-common-protos安装报错 AttributeError: '_NamespacePath' object has no attribute 'sort'--解决办法:[root@cdh-pd-db-4-172 tmp]# rpm -qa | grep -i setupto...原创 2019-01-16 14:07:58 · 3776 阅读 · 2 评论 -
centos7 安装部署airflow
运行环境:python 3.6.6apache airflow 1.10.1mysql 5.7.24centos7:--准备工作:rpm -ivh https://centos7.iuscommunity.org/ius-release.rpmyum install epel-release或者rpm -ivh https://dl.fedoraproject.org/p...原创 2019-01-16 14:49:28 · 1698 阅读 · 2 评论 -
CentOS7 安装superset
python 3.6.6superset 0.28.1sqlite-3.7.17默认采用sqlite数据库。--python版本:# yum -y install python36-devel # rpm -qa | grep -i python36python36-libs-3.6.6-1.el7.x86_64python36u-setuptools-39.0.1-1.iu...原创 2019-01-16 16:09:54 · 1317 阅读 · 0 评论 -
CentOS7 安装Superset+python3.6+MySQL5.7
由于superset默认使用sqlite数据库,在实际生产中以mysql居多。因此以MySQL作为存储来安装部署superset。运行环境:CentOS7.5 + python3.6 + MySQL5.7.24 1.安装数据库:wget http://repo.mysql.com/mysql57-community-release-el7-11.noarch.rpmrpm -ivh m...原创 2019-01-16 23:37:50 · 1749 阅读 · 0 评论 -
OCRmyPDF 安装详解
概述支持的操作系统:windows 10 下安装部署:windows下需要安装vc++ 2014版本.C:\Windows\System32>verMicrosoft Windows [版本 10.0.14393]windows下需要安装tesseract版本的软件:https://github.com/UB-Mannheim/tesseract/wikit...原创 2019-05-05 10:39:58 · 3991 阅读 · 0 评论 -
python3 连接impala和Hive
CentOS7 版本的安装:1.设置repo文件:#wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo2.安装python3.6版本:# yum -y install python36 python36-devel python36-pip 3.升级pip版本:# pip3...原创 2019-04-30 09:37:16 · 3454 阅读 · 0 评论 -
windows下python3.6 安装部署
windows 10 + python 3.6.8文件下载:https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe安装完成:查看python的环境变量:电脑--属性--环境变量--系统环境变量:环境变量的验证:C:\Users\Administr...原创 2019-04-30 10:49:39 · 2398 阅读 · 0 评论 -
python 3.6 和 kudu +impala 交互
kudu 官方提供的编程语言接口有:C++,python ,javaimpala 官方提供的编程语言接口有:C++,python,java安装kudu的接口需要安装kudu的客户端:#pip install Cython# wget https://archive.cloudera.com/cdh6/6.2.0/redhat7/yum/RPMS/x86_64/kudu-cli...原创 2019-04-30 14:26:11 · 2089 阅读 · 6 评论 -
windows 10 安装pytorch
登录网站:https://pytorch.org/https://github.com/pytorch/pytorch/tagspytorch 没有在pypi中提供软件包.从2018年4月起,官方开始支持windows版本的,最新的版本为1.0.1版本.找到适合自己的版本,CUDA、平台、Python等,然后会自动提示“Run this command” 命令指令进行安装...原创 2019-04-30 14:42:26 · 603 阅读 · 0 评论 -
Python3.6 在centos7下使用rpm安装
1.在Redhat的官方提供的EPEL中已经有python3.6.6版本的RPM,而py36版本的pip在在IUS的仓库中有。#wget http://mirrors.ustc.edu.cn/epel/7/x86_64/Packages/e/epel-release-7-11.noarch.rpm#wget http://mirrors.ustc.edu.cn/ius/stable/Cent...原创 2018-09-30 16:42:15 · 13930 阅读 · 3 评论