常见错误
Key_rongji
这个作者很懒,什么都没留下…
展开
-
2021-02-26
pip安装的过程中出现了,比如 pip3 install jupyterAttempting uninstall: terminado Found existing installation: terminado 0.8.1ERROR: Cannot uninstall 'terminado'. It is a distutils installed project and thus we cannot accurately determine which files belong to ..原创 2021-02-26 09:58:23 · 325 阅读 · 0 评论 -
jupyter notebook 密码设置
转载 2021-02-24 12:36:17 · 129 阅读 · 0 评论 -
Mysql导入csv文件时,日期全部变成空值
首先,对csv的日期字段采用分列的方法变成文本,然后保存然后输入sql语句:ALTER TABLE practice.orderinfoMODIFY COLUMN paidTime datetime null; // 允许空值load data local infile 'D:/MyDownloads/order_info_utf.csv' into table practice.orderinfofields terminated by ','; // 用这行代码导入数据比原创 2021-02-23 08:14:38 · 1639 阅读 · 0 评论 -
运行hive遇到的一些问题
1. Transform问题不能这样用 select usrid, movieid, rating, transform(ts) using “python stamp2date.py” as date from rating_table; 只能这样用 select transform(usrid, movieid, rating, ts) using “python stamp2date.p...原创 2020-03-26 21:04:05 · 662 阅读 · 0 评论 -
下载和安装与使用git
下载git,腾讯云https://pc.qq.com/detail/13/detail_22693.html安装githttps://blog.csdn.net/gxx_csdn/article/details/78905231一直下一步保持默认选项进行安装即可, 好吧,我把我的git卸载了再重新安装一遍,被自己蠢到了=.=。 【注:如果按照默认的选项进行安装,不需要自己配置环境变量,...原创 2020-03-26 21:01:14 · 383 阅读 · 0 评论 -
使用pycharm的pyspark的一些错误
1. key not found: _PYSPARK_DRIVER_CALLBACK_HOST报错https://blog.csdn.net/qq_40454655/article/details/1002245892. TypeError: namedtuple() missing 3 required keyword-only arguments: 'verbose', 'ren...原创 2020-03-26 20:59:28 · 3392 阅读 · 1 评论