08 2020 档案
摘要:创建虚拟环境 conda create -n superset python=3.6 anaconda 后面加上anaconda,可以不用重复安装原有依赖包 激活 source activate superset 如果要退出,就用 source deactivate superset 安装 pip
阅读全文
摘要:操作环境 anaconda python3.7 1.下载字体SimHei并完成安装 下载链接: https://www.fontpalace.com/font-download/SimHei/ 2. 复制字体到matplotlib字体目录下的ttf文件里 anaconda3/pkgs/matp
阅读全文
摘要:打开/etc/hosts文件 追加一下命令 http://github.com 204.232.175.94 http://gist.github.com 107.21.116.220 http://help.github.com 207.97.227.252 http://nodeload.git
阅读全文
摘要:https://blog.csdn.net/weixin_41263449/article/details/107584336 https://blog.csdn.net/qq_24267619/article/details/104500099
阅读全文
摘要:https://blog.csdn.net/dashi_lu/article/details/89641778
阅读全文
摘要:1.查找最晚入职员工的所有信息 select * from employees order by hire_date desc limit 0,1; 2.查找入职员工时间排名倒数第三的员工所有信息 select * from employees order by hire_date desc lim
阅读全文
摘要:官网下载 https://www.sqlite.org/download.html from: https://www.runoob.com/sqlite/sqlite-installation.html
阅读全文
摘要:关闭警告 pd.set_option('mode.chained_assignment', None) from: https://zhuanlan.zhihu.com/p/41202576
阅读全文
摘要:将.ui文件转换为.py文件 方法一: python -m PyQt5.uic.pyuic demo.ui -o demo.py 方法二: D:\Program Files (x86)\Anaconda3\pkgs\pyqt-5.9.2-py37h6538335_2\Library\bin\pyui
阅读全文
摘要:基础操作 1.修改列名 data.columns=["columns1","columns2","columns3"] 2.找出空值所在行 data[data['column1'].isnull()] #或者 result=data[data.isnull().T.any()] 注意isnull()
阅读全文
摘要:原因 在学习python界面图形PySide2,正常安装后出现报错 报错内容 qt.qpa.plugin: Could not load the Qt platform plugin "windows" in "" even though it ... 解决 将如下文件 \Anaconda3\Lib
阅读全文