python3
大数据球球
每天进步一点点总会有所成功
展开
-
python启动小server
python 3 小server启动方式python3 -m http.server 8888python3 -m http.server 8888 &nohup python3 -m http.server 8888 &python2 小server启动方式python -m SimpleHTTPServer 8888python -m SimpleHTTPServer 8888 &nohup python -m SimpleHTTPServer 8000 &原创 2021-08-20 17:15:22 · 549 阅读 · 0 评论 -
linux-Centos7 安装 python3 并且可以保留原来的pyhton2
1.查看是否已经安装PythonCentOS 7.默认安装了python2.7.5 因为一些命令要用它比如yum 它使用的是python2.7.5。使用 python -V命令查看一下是否安装Python然后使用命令which python查看一下Python可执行文件的位置可见执行文件在/usr/bin/目录下,切换到该目录下执行ll python*命令查看 python 指...原创 2018-06-28 14:39:24 · 661 阅读 · 0 评论 -
MySQLdb库和pymysql库的区别
MySQLdb只支持Python2.,还不支持3.可以用PyMySQL代替。安装方法:pip install PyMySQL然后在需要的项目中,把 init.py中添加两行:import pymysqlpymysql.install_as_MySQLdb()就可以用 import MySQLdb了。其他的方法与MySQLdb一样。...原创 2019-01-21 17:49:05 · 4736 阅读 · 4 评论