过程中遇到的问题
- pip install kaggle后找不到.kaggle文件夹
- kaggle命令安装显示
kaggle: command not found error
第一步:点击Kaggle比赛页面链接
https://www.kaggle.com/c/bosch-production-line-performance/data
第二步:在Rules那里 accept rules,不然后续会有报错
第三步: kaggle主页找到My-account,Create New API token 自动下载的 kaggle.json
第四步: 打开cmd命令行 输入
pip install kaggle
问题1就出现了, 理应是会出现.kaggle的文件夹,可是我的路径下并没有, 我怀疑就是电脑里配置的python下的库文件夹里,如图
问题1的解决方案, 双击kaggle.exe 文件夹就会自动出现在文件夹了,如下
把下载好的 kaggle.json
放进这个 .kaggle
文件夹里就完成了一大半了。
第五步:开始使用kaggle命令
#回到kaggle比赛页面,找到下载的API
kaggle competitions download -c bosch-production-line-performance
问题2出现,kaggle: command not found error
,这是kaggle命令 要回到对应的路径, git官网有教怎么找
If you run into a kaggle: command not found error,
ensure that your python binaries are on your path.
You can see where kaggle is installed by doing pip uninstall kaggle and seeing where the binary is.
For a local user install on Linux, the default location is
~/.local/bin. On Windows, the default location is $PYTHON_HOME/Scripts.
好的 开干,打开
找到C:\Users\dengj\AppData\Roaming\Python\Python38\Scripts
文件夹
在文件夹的窗口直接输入CMD,弹出就是对应路径的命令窗口
重新输入,API的代码
kaggle competitions download -c bosch-production-line-performance
成功!