[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"tool-codota--jupyter-tabnine":3,"similar-codota--jupyter-tabnine":108},{"id":4,"github_repo":5,"name":6,"description_en":7,"description_zh":8,"ai_summary_zh":9,"readme_en":10,"readme_zh":11,"quickstart_zh":12,"use_case_zh":13,"hero_image_url":14,"owner_login":15,"owner_name":16,"owner_avatar_url":17,"owner_bio":18,"owner_company":19,"owner_location":19,"owner_email":20,"owner_twitter":21,"owner_website":22,"owner_url":23,"languages":24,"stars":49,"forks":50,"last_commit_at":51,"license":52,"difficulty_score":53,"env_os":54,"env_gpu":55,"env_ram":55,"env_deps":56,"category_tags":62,"github_topics":19,"view_count":53,"oss_zip_url":19,"oss_zip_packed_at":19,"status":65,"created_at":66,"updated_at":67,"faqs":68,"releases":99},4277,"codota\u002Fjupyter-tabnine","jupyter-tabnine","Autocompletion with Deep Learning on Jupyter Notebook","jupyter-tabnine 是一款专为 Jupyter Notebook 设计的智能代码补全插件，它利用深度学习技术为数据科学家和开发者提供精准的代码自动完成建议。在编写 Python 或其他支持的语言时，用户只需输入部分代码，该插件即可基于上下文预测并推荐后续内容，显著提升编码效率与流畅度。\n\n传统 TabNine 客户端依赖子进程通信，而 Jupyter Notebook 的架构限制使其无法直接运行此类插件。jupyter-tabnine 创新性地采用“前端 + 后端”双插件架构：前端负责收集输入并发送 HTTP 请求，后端则调用 TabNine 二进制程序处理推理并返回结果，从而巧妙绕过技术限制，实现无缝集成。\n\n该工具适合经常使用 Jupyter 进行数据分析、机器学习建模或教学演示的研究人员、工程师和学生。它兼容 macOS、Linux 和 Windows 系统，并支持 Chrome 与 Safari 浏览器。安装简便，通过 pip 几条命令即可完成配置。若需临时切换回 Jupyter 原生补全功能，仅需按下 Shift+Space 即可灵活切换。无论是日常开发还是复杂项","jupyter-tabnine 是一款专为 Jupyter Notebook 设计的智能代码补全插件，它利用深度学习技术为数据科学家和开发者提供精准的代码自动完成建议。在编写 Python 或其他支持的语言时，用户只需输入部分代码，该插件即可基于上下文预测并推荐后续内容，显著提升编码效率与流畅度。\n\n传统 TabNine 客户端依赖子进程通信，而 Jupyter Notebook 的架构限制使其无法直接运行此类插件。jupyter-tabnine 创新性地采用“前端 + 后端”双插件架构：前端负责收集输入并发送 HTTP 请求，后端则调用 TabNine 二进制程序处理推理并返回结果，从而巧妙绕过技术限制，实现无缝集成。\n\n该工具适合经常使用 Jupyter 进行数据分析、机器学习建模或教学演示的研究人员、工程师和学生。它兼容 macOS、Linux 和 Windows 系统，并支持 Chrome 与 Safari 浏览器。安装简便，通过 pip 几条命令即可完成配置。若需临时切换回 Jupyter 原生补全功能，仅需按下 Shift+Space 即可灵活切换。无论是日常开发还是复杂项目，jupyter-tabnine 都能让代码编写更智能、更高效。","# TabNine for Jupyter Notebook\n\n**This plugin has been created by [wenmin-wu](https:\u002F\u002Fgithub.com\u002Fwenmin-wu).**\n\n**This plugin has been tested on MacOS, Linux and Windows, it support all these systems. For browsers it supports Chrome and Safari but not IE**\n\nIf you found this plugin doesn't work for you, please debug according to [How to Debug](DEBUG.md). And if you can't figure out what's wrong, please release an issue and report the logs in detail.\n\nThanks for using this plugin! Have fun! :)\n\n*Read this in other languages: [English](README.md), [中文](README.ch.md)*\n\n![jupyter-tabnine](https:\u002F\u002Foss.gittoolsai.com\u002Fimages\u002Fcodota_jupyter-tabnine_readme_961a1eb6bb5d.gif)\n\nThis extension for Jupyter Notebook enables the use of coding auto-completion based on Deep Learning.\n\nOther client plugins of TabNine require starting a child process for TabNine binary and using Pipe for communication. This can’t be done with Jupyter Notebook, since child process can’t be created with JQuery and Jupyter Notebook doesn’t provide any way for adding third-part js libs to plugins.\n\nIn this repository, it is achived by developing a client plugin and a server plugin for Jupyter Notebook. The client plugin generate request info and send http request to the server plugin. The server plugin pass the request info to it’s client process (TabNine) and return the request to client plugin.\n\n## Installation\n\nI saw a lot users came across problems due to didn't install and configure this plugin correctly, the simplest way to install and configure this plugin is by issuing following command:\n\n```\npip3 install jupyter-tabnine --user\njupyter nbextension install --py jupyter_tabnine --user\njupyter nbextension enable --py jupyter_tabnine --user\njupyter serverextension enable --py jupyter_tabnine --user\n```\n\nIf you want to install and configure in a customized way, you can refer to following:\n\nThe extension consists of a pypi package that includes a javascript\nnotebook extension, along with a python jupyter server extension. Since Jupyter 4.2, pypi is the recommended way to distribute nbextensions. The extension can be installed:\n\n* from the master version on the github repo (this will be always the most recent version)\n\n* via pip for the version hosted on pypi\n\nFrom the github repo or from Pypi,\n1. install the package\n    * `pip3 install https:\u002F\u002Fgithub.com\u002Fwenmin-wu\u002Fjupyter-tabnine\u002Farchive\u002Fmaster.zip [--user][--upgrade]`\n    * or `pip3 install jupyter-tabnine [--user][--upgrade]`\n    * or clone the repo and install\n    \n        `git clone https:\u002F\u002Fgithub.com\u002Fwenmin-wu\u002Fjupyter-tabnine.git`\n        \n        `python3 setup.py install`\n2. install the notebook extension\n    `jupyter nbextension install --py jupyter_tabnine [--user|--sys-prefix|--system]`\n\n3. and enable notebook extension and server extension\n    ```Bash\n    jupyter nbextension enable --py jupyter_tabnine [--user|--sys-prefix|--system]\n    jupyter serverextension enable --py jupyter_tabnine [--user|--sys-prefix|--system]\n    ```\n---\nFor **Jupyter versions before 4.2**, the situation after step 1 is more tricky, since the --py option isn’t available, so you will have to find the location of the source files manually as follows (instructions adapted from [@jcb91](https:\u002F\u002Fgithub.com\u002Fjcb91)’s jupyter_highlight_selected_word). Execute\n\n```Python\npython -c \"import os.path as p; from jupyter_tabnine import __file__ as f, _jupyter_nbextension_paths as n; print(p.normpath(p.join(p.dirname(f), n()[0]['src'])))\"\n```\nThen, issue\n```Bash\njupyter nbextension install \u003Coutput source directory>\njupyter nbextension enable jupyter_tabnine\u002Fmain\njupyter serverextension enable \u003Coutput source directory>\n```\nwhere `\u003Coutput source directory>` is the output of the first python command.\n\n## Usage\n\n* Jupyter TabNine will be active after being installed. Sometimes, you may want to show the Jupyter original complete temporally, then click `shift` + `space`.\n\n   ![show original complete demo](https:\u002F\u002Foss.gittoolsai.com\u002Fimages\u002Fcodota_jupyter-tabnine_readme_4b19efb8184b.gif)\n* Remote auto-completion server is also supported. You may want this to speed up the completion request handing. Or maybe your company want to deploy a compeltion server cluster that services everyone. Read following to learn how to deploy remote server.\n\n## Uninstallation\nTo uninstall TabNine plugin from mac\u002Flinux run the following commands:\n```Bash\njupyter nbextension uninstall --py jupyter_tabnine\npip3 uninstall jupyter-tabnine\n```\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\nPlease make sure to update tests as appropriate.\n\n## License\n\n[MIT License](LICENSE)\n\n## Remote Completion Server Deployment\nIt's useful to deploy a remote tabnine server if you don't want to occupy too much local resources. You can build, deploy and config a remote tabnine server according to the following steps.\n\n**NOTE:** You need to install jupyter-tabnine with `pip3 install https:\u002F\u002Fgithub.com\u002Fwenmin-wu\u002Fjupyter-tabnine\u002Farchive\u002Fmaster.zip`, because the version which fix this plugin with remote server problem haven't been relased to PyPi.\n### Build Server Image\n**I have uploaded an image to Docker Hub, skip this section if you prefer to use it directly.**\n* Install the golang (recommended version is 1.13 - 1.14)\n* Issue `go get -v github.com\u002Fwenmin-wu\u002Fjupyter-tabnine\u002Fgo\u002Fcmd`\n* Issue `cd $HOME\u002Fgo\u002Fsrc\u002Fgithub.com\u002Fwenmin-wu\u002Fjupyter-tabnine`\n* Issue `bash .\u002Fbuild-image.sh`\n### Start Server\n**Change the image name in this bash script to `wuwenmin1991\u002Ftabnine-server:1.0` if you did't build your own image**\n* Simply issue `bash start-server.sh`\n\n### Configure Under Nbextensions\n* Please [install Nbextensions](https:\u002F\u002Fjupyter-contrib-nbextensions.readthedocs.io\u002Fen\u002Flatest\u002Finstall.html) if you haven't installed.\n* Open Jupyter Notebook and go to the Nbextensions setting page, click **Jupyter TabNine**, scroll down and fill in the remote server url, e.g.\n![remote-server-url-config](https:\u002F\u002Foss.gittoolsai.com\u002Fimages\u002Fcodota_jupyter-tabnine_readme_3e9b077406df.jpg)\n### Stop Server\n* Simply issue `bash stop-server.sh`\n\n## Stargazers over time\n\n[![Stargazers over time](https:\u002F\u002Fstarchart.cc\u002Fwenmin-wu\u002Fjupyter-tabnine.svg)](https:\u002F\u002Fstarchart.cc\u002Fwenmin-wu\u002Fjupyter-tabnine)\n","# TabNine for Jupyter Notebook\n\n**此插件由 [wenmin-wu](https:\u002F\u002Fgithub.com\u002Fwenmin-wu) 创建。**\n\n**此插件已在 macOS、Linux 和 Windows 上测试通过，支持所有这些操作系统。浏览器方面支持 Chrome 和 Safari，但不支持 IE。**\n\n如果您发现此插件无法正常工作，请按照 [如何调试](DEBUG.md) 进行排查。如果仍无法解决问题，请提交 issue 并详细描述日志信息。\n\n感谢您使用此插件！祝您使用愉快！ :)\n\n*以其他语言阅读：[英语](README.md), [中文](README.ch.md)*\n\n![jupyter-tabnine](https:\u002F\u002Foss.gittoolsai.com\u002Fimages\u002Fcodota_jupyter-tabnine_readme_961a1eb6bb5d.gif)\n\n此 Jupyter Notebook 扩展允许在基于深度学习的代码自动补全功能中使用 TabNine。\n\nTabNine 的其他客户端插件需要启动一个 TabNine 二进制文件的子进程，并通过管道进行通信。然而，在 Jupyter Notebook 中无法实现这一点，因为无法使用 jQuery 创建子进程，且 Jupyter Notebook 也不提供向插件添加第三方 JavaScript 库的方法。\n\n为此，本仓库开发了一个适用于 Jupyter Notebook 的客户端插件和服务器插件。客户端插件会生成请求信息并发送 HTTP 请求至服务器插件，而服务器插件则将请求传递给其内部的 TabNine 客户端进程，并将结果返回给客户端插件。\n\n## 安装\n\n我发现许多用户遇到问题是因为没有正确安装和配置此插件。最简单的安装和配置方法是执行以下命令：\n\n```\npip3 install jupyter-tabnine --user\njupyter nbextension install --py jupyter_tabnine --user\njupyter nbextension enable --py jupyter_tabnine --user\njupyter serverextension enable --py jupyter_tabnine --user\n```\n\n如果您希望以自定义方式安装和配置，可以参考以下步骤：\n\n该扩展包含一个 PyPI 包，其中包含了 JavaScript Notebook 扩展以及 Python Jupyter 服务器扩展。自 Jupyter 4.2 起，推荐使用 PyPI 来分发 Notebook 扩展。您可以从以下途径安装此扩展：\n\n* 直接从 GitHub 仓库的主分支（始终是最新的版本）\n* 或通过 PyPI 上托管的版本\n\n无论是从 GitHub 仓库还是 PyPI 安装：\n1. 安装包\n    * `pip3 install https:\u002F\u002Fgithub.com\u002Fwenmin-wu\u002Fjupyter-tabnine\u002Farchive\u002Fmaster.zip [--user][--upgrade]`\n    * 或者 `pip3 install jupyter-tabnine [--user][--upgrade]`\n    * 或者克隆仓库后手动安装：\n        `git clone https:\u002F\u002Fgithub.com\u002Fwenmin-wu\u002Fjupyter-tabnine.git`\n        `python3 setup.py install`\n2. 安装 Notebook 扩展\n    `jupyter nbextension install --py jupyter_tabnine [--user|--sys-prefix|--system]`\n3. 启用 Notebook 扩展和服务器扩展\n    ```Bash\n    jupyter nbextension enable --py jupyter_tabnine [--user|--sys-prefix|--system]\n    jupyter serverextension enable --py jupyter_tabnine [--user|--sys-prefix|--system]\n    ```\n---\n对于 **Jupyter 4.2 之前的版本**，在完成第 1 步之后的情况会稍微复杂一些，因为没有 `--py` 选项可用，因此您需要手动找到源文件的位置，具体操作如下（参考 [@jcb91](https:\u002F\u002Fgithub.com\u002Fjcb91) 的 jupyter_highlight_selected_word 指南）：执行以下命令：\n```Python\npython -c \"import os.path as p; from jupyter_tabnine import __file__ as f, _jupyter_nbextension_paths as n; print(p.normpath(p.join(p.dirname(f), n()[0]['src'])))\"\n```\n然后执行：\n```Bash\njupyter nbextension install \u003C输出源目录>\njupyter nbextension enable jupyter_tabnine\u002Fmain\njupyter serverextension enable \u003C 输出源目录 >\n```\n其中 `\u003C 输出源目录 >` 是上述 Python 命令的输出结果。\n\n## 使用\n\n* Jupyter TabNine 在安装完成后即可生效。有时您可能需要暂时显示 Jupyter 自带的原始补全提示，此时只需按下 `Shift` + `Space` 键。\n   ![show original complete demo](https:\u002F\u002Foss.gittoolsai.com\u002Fimages\u002Fcodota_jupyter-tabnine_readme_4b19efb8184b.gif)\n* 此外，还支持远程自动补全服务器。这有助于加快补全请求的处理速度，或者当您的公司希望部署一个为所有人服务的补全服务器集群时，也可以采用这种方式。有关如何部署远程服务器的详细信息，请参阅下文。\n\n## 卸载\n要在 Mac\u002FLinux 上卸载 TabNine 插件，请运行以下命令：\n```Bash\njupyter nbextension uninstall --py jupyter_tabnine\npip3 uninstall jupyter-tabnine\n```\n\n## 贡献\n欢迎提交 Pull Request。对于重大更改，请先打开 Issue 讨论您计划修改的内容。\n\n请确保相应地更新测试用例。\n\n## 许可证\n[MIT 许可证](LICENSE)\n\n## 部署远程补全服务器\n如果您不想占用过多本地资源，部署一个远程 TabNine 服务器会非常有用。您可以按照以下步骤构建、部署和配置远程 TabNine 服务器。\n\n**注意：** 您需要使用 `pip3 install https:\u002F\u002Fgithub.com\u002Fwenmin-wu\u002Fjupyter-tabnine\u002Farchive\u002Fmaster.zip` 来安装 jupyter-tabnine，因为修复了与远程服务器相关问题的版本尚未发布到 PyPI。\n### 构建服务器镜像\n**我已经将镜像上传到了 Docker Hub，如果您想直接使用，可以跳过本节。**\n* 安装 Go 语言（推荐版本为 1.13 - 1.14）\n* 执行 `go get -v github.com\u002Fwenmin-wu\u002Fjupyter-tabnine\u002Fgo\u002Fcmd`\n* 切换到 `$HOME\u002Fgo\u002Fsrc\u002Fgithub.com\u002Fwenmin-wu\u002Fjupyter-tabnine`\n* 执行 `bash .\u002Fbuild-image.sh`\n### 启动服务器\n**如果您没有自行构建镜像，请将此脚本中的镜像名称改为 `wuwenmin1991\u002Ftabnine-server:1.0`**\n* 直接执行 `bash start-server.sh`\n\n### 在 Notebook 扩展中配置\n* 如果您尚未安装 Notebook 扩展，请先 [安装 Notebook 扩展](https:\u002F\u002Fjupyter-contrib-nbextensions.readthedocs.io\u002Fen\u002Flatest\u002Finstall.html)。\n* 打开 Jupyter Notebook，进入 Notebook 扩展设置页面，点击 **Jupyter TabNine**，向下滚动并填写远程服务器的 URL，例如：\n![remote-server-url-config](https:\u002F\u002Foss.gittoolsai.com\u002Fimages\u002Fcodota_jupyter-tabnine_readme_3e9b077406df.jpg)\n### 停止服务器\n* 直接执行 `bash stop-server.sh`\n\n## 星标数量随时间变化\n\n[![Stargazers over time](https:\u002F\u002Fstarchart.cc\u002Fwenmin-wu\u002Fjupyter-tabnine.svg)](https:\u002F\u002Fstarchart.cc\u002Fwenmin-wu\u002Fjupyter-tabnine)","# jupyter-tabnine 快速上手指南\n\njupyter-tabnine 是一款为 Jupyter Notebook 设计的智能代码补全插件，基于深度学习技术提供类似 IDE 的自动补全体验。\n\n## 环境准备\n\n*   **操作系统**：支持 macOS、Linux 和 Windows。\n*   **浏览器**：推荐使用 Chrome 或 Safari（不支持 IE）。\n*   **前置依赖**：\n    *   Python 3 及 pip3\n    *   Jupyter Notebook (建议版本 >= 4.2)\n*   **网络提示**：由于 TabNine 二进制文件需要从云端下载，国内用户若遇到安装卡顿，请确保网络通畅或配置合适的代理。\n\n## 安装步骤\n\n最简便的安装方式是通过 `pip` 一键完成安装与配置。请在终端执行以下命令：\n\n```bash\npip3 install jupyter-tabnine --user\njupyter nbextension install --py jupyter_tabnine --user\njupyter nbextension enable --py jupyter_tabnine --user\njupyter serverextension enable --py jupyter_tabnine --user\n```\n\n> **注意**：安装完成后，请重启 Jupyter Notebook 服务以使插件生效。\n\n## 基本使用\n\n1.  **启动插件**：安装并重启后，插件会自动激活。在代码单元格中输入代码时，TabNine 会根据上下文自动弹出补全建议。\n2.  **切换模式**：\n    *   默认使用 TabNine 智能补全。\n    *   若需临时切换回 Jupyter 原生补全功能，按下 `Shift` + `Space` 即可。\n3.  **高级配置（可选）**：\n    *   若希望将计算任务卸载到远程服务器以节省本地资源，可部署远程 TabNine 服务。\n    *   部署后，需在 Jupyter 的 **Nbextensions** 设置页面中找到 **Jupyter TabNine** 选项，填入远程服务器地址（URL）进行配置。","数据科学家小李正在 Jupyter Notebook 中构建一个复杂的深度学习模型，需要频繁调用 Pandas 进行数据清洗并编写自定义神经网络层。\n\n### 没有 jupyter-tabnine 时\n- 每次输入长变量名（如 `preprocessed_training_dataset`）或冗长的库函数时，必须手动敲完所有字符，极易因拼写错误导致代码报错。\n- 忘记特定库（如 Scikit-learn）的具体参数顺序或方法名称时，不得不中断思路去查阅官方文档或搜索示例代码。\n- 编写重复性的数据转换逻辑时，只能逐行手写，无法智能预测下一行代码结构，编码节奏频繁被打断。\n- 在尝试新算法时，由于缺乏上下文感知的提示，往往需要多次试错才能写出语法正确的代码块。\n\n### 使用 jupyter-tabnine 后\n- 基于深度学习的智能补全能精准预测完整变量名和函数调用，只需输入前几个字母即可一键上屏，彻底消除拼写错误。\n- 实时感知当前导入的库上下文，自动提示准确的参数名称和默认值，让开发者无需离开编辑器即可掌握 API 细节。\n- 能够识别代码模式并自动补全整行甚至多行逻辑（如完整的 DataFrame 过滤链），显著减少重复性敲击工作。\n- 在编写陌生领域的代码时，提供符合语法的智能建议，大幅降低试错成本，保持思维流的连续性。\n\njupyter-tabnine 通过将深度学习驱动的自动补全引入 Notebook 环境，将数据探索从繁琐的打字工作中解放出来，让开发者专注于算法逻辑本身。","https:\u002F\u002Foss.gittoolsai.com\u002Fimages\u002Fcodota_jupyter-tabnine_6d388fa7.png","codota","Tabnine","https:\u002F\u002Foss.gittoolsai.com\u002Favatars\u002Fcodota_254fd80e.png","Tabnine | Code Faster with AI Code Completions",null,"info@tabnine.com","tabnine","https:\u002F\u002Fwww.tabnine.com","https:\u002F\u002Fgithub.com\u002Fcodota",[25,29,33,37,41,45],{"name":26,"color":27,"percentage":28},"JavaScript","#f1e05a",53.3,{"name":30,"color":31,"percentage":32},"Python","#3572A5",25.8,{"name":34,"color":35,"percentage":36},"Go","#00ADD8",16.9,{"name":38,"color":39,"percentage":40},"Shell","#89e051",1.8,{"name":42,"color":43,"percentage":44},"CSS","#663399",1.5,{"name":46,"color":47,"percentage":48},"Dockerfile","#384d54",0.7,790,118,"2026-03-28T03:59:45","MIT",2,"Linux, macOS, Windows","未说明",{"notes":57,"python":58,"dependencies":59},"浏览器仅支持 Chrome 和 Safari，不支持 IE。该工具由客户端插件和服务端插件组成，服务端会启动 TabNine 二进制子进程。若需部署远程自动补全服务器以节省本地资源，需安装 Go 语言环境并构建 Docker 镜像；使用远程服务器功能时，必须从 GitHub 源码安装特定版本，PyPI 上的版本尚未包含此修复。","Python 3 (通过 pip3 和 python3 命令推断)",[60,61],"jupyter-notebook>=4.2","golang 1.13-1.14 (仅远程服务器部署需要)",[63,64],"语言模型","插件","ready","2026-03-27T02:49:30.150509","2026-04-06T15:54:51.236145",[69,74,79,84,89,94],{"id":70,"question_zh":71,"answer_zh":72,"source_url":73},19465,"JupyterLab 有 Tabnine 扩展吗？","有的，官方已经发布了适用于 JupyterLab 的扩展。您可以访问 https:\u002F\u002Fgithub.com\u002Fcodota\u002Ftabnine-jupyterlab 进行安装和使用。","https:\u002F\u002Fgithub.com\u002Fcodota\u002Fjupyter-tabnine\u002Fissues\u002F55",{"id":75,"question_zh":76,"answer_zh":77,"source_url":78},19466,"安装时遇到 'ModuleNotFoundError: No module named jupyter_tabnine' 错误怎么办？","这通常是因为安装说明不够清晰导致的。维护者已更新 README.md 文件以提供更详细的安装指令。请确保严格按照最新的官方文档步骤操作，注意区分 Jupyter Notebook 和 JupyterLab 的不同安装方式，并检查 Python 环境路径是否正确。","https:\u002F\u002Fgithub.com\u002Fcodota\u002Fjupyter-tabnine\u002Fissues\u002F21",{"id":80,"question_zh":81,"answer_zh":82,"source_url":83},19467,"启动时出现 'Download Failed, HTTP Error 403: Forbidden' 错误如何解决？","这是下载 Tabnine 二进制文件时被服务器拒绝的问题。解决方案是替换项目中的 `tabnine.py` 文件。请参考 PR #66 (https:\u002F\u002Fgithub.com\u002Fcodota\u002Fjupyter-tabnine\u002Fpull\u002F66) 获取修复后的 `tabnine.py` 文件，并将其替换到您安装目录下的对应位置（例如 `\u002FUsers\u002F...\u002Fjupyter-tabnine\u002F`）。如果问题依旧，请按照 DEBUG.md 中的指引收集日志并反馈。","https:\u002F\u002Fgithub.com\u002Fcodota\u002Fjupyter-tabnine\u002Fissues\u002F70",{"id":85,"question_zh":86,"answer_zh":87,"source_url":88},19468,"Tabnine 安装后自动补全功能不工作（输入变量名加点无反应）怎么办？","如果安装后没有立即生效，请尝试在代码单元格中输入 `TabNine::sem` 并按下 Tab 键（不要运行该单元格），这会触发 Python 语言服务器的自动下载。下载完成后，删除该行代码即可正常使用。此外，确保已安装并配置好 python-language-server (pyls)，在某些 Anaconda 环境中可能需要手动通过 pip 安装 (`pip install python-language-server`) 而非 conda。","https:\u002F\u002Fgithub.com\u002Fcodota\u002Fjupyter-tabnine\u002Fissues\u002F28",{"id":90,"question_zh":91,"answer_zh":92,"source_url":93},19469,"遇到 'SSL: CERTIFICATE_VERIFY_FAILED' 导致扩展加载失败如何修复？","此错误通常发生在 macOS 或某些 Linux 环境下，原因是 Python 未预装根证书。解决方法是安装或更新证书包：\n1. macOS 用户：运行 `\u002FApplications\u002FPython\\ 3.x\u002FInstall\\ Certificates.command` 脚本。\n2. 通用方法：尝试运行 `pip install --upgrade certifi` 或在 conda 环境中运行 `conda install -c anaconda certifi`。\n3. 如果仍无效，可参考 StackOverflow 相关讨论手动配置证书路径。","https:\u002F\u002Fgithub.com\u002Fcodota\u002Fjupyter-tabnine\u002Fissues\u002F65",{"id":95,"question_zh":96,"answer_zh":97,"source_url":98},19470,"安装后出现 'TabNine::sem' 警告消息且命令无法执行怎么办？","这是一个提示而非错误。您不需要在单元格中“运行” `TabNine::sem` 这行代码。只需在编辑器中输入该文本，然后按下 `Tab` 键，它就会自动触发后台下载 Python 语言服务器。下载开始后，您可以直接删除这行文字。后续版本已优化为启动时自动下载，不再需要此手动步骤。","https:\u002F\u002Fgithub.com\u002Fcodota\u002Fjupyter-tabnine\u002Fissues\u002F5",[100,104],{"id":101,"version":102,"summary_zh":19,"released_at":103},117523,"v1.2.3","2021-08-23T11:45:05",{"id":105,"version":106,"summary_zh":19,"released_at":107},117524,"v1.2.2","2021-02-28T13:56:39",[109,119,127,140,149,157],{"id":110,"name":111,"github_repo":112,"description_zh":113,"stars":114,"difficulty_score":53,"last_commit_at":115,"category_tags":116,"status":65},1381,"everything-claude-code","affaan-m\u002Feverything-claude-code","everything-claude-code 是一套专为 AI 编程助手（如 Claude Code、Codex、Cursor 等）打造的高性能优化系统。它不仅仅是一组配置文件，而是一个经过长期实战打磨的完整框架，旨在解决 AI 代理在实际开发中面临的效率低下、记忆丢失、安全隐患及缺乏持续学习能力等核心痛点。\n\n通过引入技能模块化、直觉增强、记忆持久化机制以及内置的安全扫描功能，everything-claude-code 能显著提升 AI 在复杂任务中的表现，帮助开发者构建更稳定、更智能的生产级 AI 代理。其独特的“研究优先”开发理念和针对 Token 消耗的优化策略，使得模型响应更快、成本更低，同时有效防御潜在的攻击向量。\n\n这套工具特别适合软件开发者、AI 研究人员以及希望深度定制 AI 工作流的技术团队使用。无论您是在构建大型代码库，还是需要 AI 协助进行安全审计与自动化测试，everything-claude-code 都能提供强大的底层支持。作为一个曾荣获 Anthropic 黑客大奖的开源项目，它融合了多语言支持与丰富的实战钩子（hooks），让 AI 真正成长为懂上",140436,"2026-04-05T23:32:43",[117,118,63],"开发框架","Agent",{"id":120,"name":121,"github_repo":122,"description_zh":123,"stars":124,"difficulty_score":53,"last_commit_at":125,"category_tags":126,"status":65},3704,"NextChat","ChatGPTNextWeb\u002FNextChat","NextChat 是一款轻量且极速的 AI 助手，旨在为用户提供流畅、跨平台的大模型交互体验。它完美解决了用户在多设备间切换时难以保持对话连续性，以及面对众多 AI 模型不知如何统一管理的痛点。无论是日常办公、学习辅助还是创意激发，NextChat 都能让用户随时随地通过网页、iOS、Android、Windows、MacOS 或 Linux 端无缝接入智能服务。\n\n这款工具非常适合普通用户、学生、职场人士以及需要私有化部署的企业团队使用。对于开发者而言，它也提供了便捷的自托管方案，支持一键部署到 Vercel 或 Zeabur 等平台。\n\nNextChat 的核心亮点在于其广泛的模型兼容性，原生支持 Claude、DeepSeek、GPT-4 及 Gemini Pro 等主流大模型，让用户在一个界面即可自由切换不同 AI 能力。此外，它还率先支持 MCP（Model Context Protocol）协议，增强了上下文处理能力。针对企业用户，NextChat 提供专业版解决方案，具备品牌定制、细粒度权限控制、内部知识库整合及安全审计等功能，满足公司对数据隐私和个性化管理的高标准要求。",87618,"2026-04-05T07:20:52",[117,63],{"id":128,"name":129,"github_repo":130,"description_zh":131,"stars":132,"difficulty_score":53,"last_commit_at":133,"category_tags":134,"status":65},2268,"ML-For-Beginners","microsoft\u002FML-For-Beginners","ML-For-Beginners 是由微软推出的一套系统化机器学习入门课程，旨在帮助零基础用户轻松掌握经典机器学习知识。这套课程将学习路径规划为 12 周，包含 26 节精炼课程和 52 道配套测验，内容涵盖从基础概念到实际应用的完整流程，有效解决了初学者面对庞大知识体系时无从下手、缺乏结构化指导的痛点。\n\n无论是希望转型的开发者、需要补充算法背景的研究人员，还是对人工智能充满好奇的普通爱好者，都能从中受益。课程不仅提供了清晰的理论讲解，还强调动手实践，让用户在循序渐进中建立扎实的技能基础。其独特的亮点在于强大的多语言支持，通过自动化机制提供了包括简体中文在内的 50 多种语言版本，极大地降低了全球不同背景用户的学习门槛。此外，项目采用开源协作模式，社区活跃且内容持续更新，确保学习者能获取前沿且准确的技术资讯。如果你正寻找一条清晰、友好且专业的机器学习入门之路，ML-For-Beginners 将是理想的起点。",84991,"2026-04-05T10:45:23",[135,136,137,64,118,138,63,117,139],"图像","数据工具","视频","其他","音频",{"id":141,"name":142,"github_repo":143,"description_zh":144,"stars":145,"difficulty_score":146,"last_commit_at":147,"category_tags":148,"status":65},3128,"ragflow","infiniflow\u002Fragflow","RAGFlow 是一款领先的开源检索增强生成（RAG）引擎，旨在为大语言模型构建更精准、可靠的上下文层。它巧妙地将前沿的 RAG 技术与智能体（Agent）能力相结合，不仅支持从各类文档中高效提取知识，还能让模型基于这些知识进行逻辑推理和任务执行。\n\n在大模型应用中，幻觉问题和知识滞后是常见痛点。RAGFlow 通过深度解析复杂文档结构（如表格、图表及混合排版），显著提升了信息检索的准确度，从而有效减少模型“胡编乱造”的现象，确保回答既有据可依又具备时效性。其内置的智能体机制更进一步，使系统不仅能回答问题，还能自主规划步骤解决复杂问题。\n\n这款工具特别适合开发者、企业技术团队以及 AI 研究人员使用。无论是希望快速搭建私有知识库问答系统，还是致力于探索大模型在垂直领域落地的创新者，都能从中受益。RAGFlow 提供了可视化的工作流编排界面和灵活的 API 接口，既降低了非算法背景用户的上手门槛，也满足了专业开发者对系统深度定制的需求。作为基于 Apache 2.0 协议开源的项目，它正成为连接通用大模型与行业专有知识之间的重要桥梁。",77062,3,"2026-04-04T04:44:48",[118,135,117,63,138],{"id":150,"name":151,"github_repo":152,"description_zh":153,"stars":154,"difficulty_score":146,"last_commit_at":155,"category_tags":156,"status":65},519,"PaddleOCR","PaddlePaddle\u002FPaddleOCR","PaddleOCR 是一款基于百度飞桨框架开发的高性能开源光学字符识别工具包。它的核心能力是将图片、PDF 等文档中的文字提取出来，转换成计算机可读取的结构化数据，让机器真正“看懂”图文内容。\n\n面对海量纸质或电子文档，PaddleOCR 解决了人工录入效率低、数字化成本高的问题。尤其在人工智能领域，它扮演着连接图像与大型语言模型（LLM）的桥梁角色，能将视觉信息直接转化为文本输入，助力智能问答、文档分析等应用场景落地。\n\nPaddleOCR 适合开发者、算法研究人员以及有文档自动化需求的普通用户。其技术优势十分明显：不仅支持全球 100 多种语言的识别，还能在 Windows、Linux、macOS 等多个系统上运行，并灵活适配 CPU、GPU、NPU 等各类硬件。作为一个轻量级且社区活跃的开源项目，PaddleOCR 既能满足快速集成的需求，也能支撑前沿的视觉语言研究，是处理文字识别任务的理想选择。",74939,"2026-04-05T23:16:38",[63,135,117,138],{"id":158,"name":159,"github_repo":160,"description_zh":161,"stars":162,"difficulty_score":146,"last_commit_at":163,"category_tags":164,"status":65},2181,"OpenHands","OpenHands\u002FOpenHands","OpenHands 是一个专注于 AI 驱动开发的开源平台，旨在让智能体（Agent）像人类开发者一样理解、编写和调试代码。它解决了传统编程中重复性劳动多、环境配置复杂以及人机协作效率低等痛点，通过自动化流程显著提升开发速度。\n\n无论是希望提升编码效率的软件工程师、探索智能体技术的研究人员，还是需要快速原型验证的技术团队，都能从中受益。OpenHands 提供了灵活多样的使用方式：既可以通过命令行（CLI）或本地图形界面在个人电脑上轻松上手，体验类似 Devin 的流畅交互；也能利用其强大的 Python SDK 自定义智能体逻辑，甚至在云端大规模部署上千个智能体并行工作。\n\n其核心技术亮点在于模块化的软件智能体 SDK，这不仅构成了平台的引擎，还支持高度可组合的开发模式。此外，OpenHands 在 SWE-bench 基准测试中取得了 77.6% 的优异成绩，证明了其解决真实世界软件工程问题的能力。平台还具备完善的企业级功能，支持与 Slack、Jira 等工具集成，并提供细粒度的权限管理，适合从个人开发者到大型企业的各类用户场景。",70626,"2026-04-05T22:51:36",[63,118,117,64]]