Github Copilot¶
约 244 个字 7 行代码 预计阅读时间 1 分钟
1¶
Copilot激活方式
-
成功认证学生包后,打开GitHub,进入个人设置->Billing and plans->Plans and usage->Enable GitHub Copilot。
-
跳转后点击Get access to GitHub Copilot就好啦。
-
跳转后的页面选择Allow。
2¶
pycharm、clion等ide安装github copilot插件后,无法登陆,可以在设置中设置ide的网络代理
clash:
- 主机:127.0.0.1
- 端口:7890
3¶
使用经验:
- 先用英文写一段注释(不会可以中文写出再用百度翻译)
- 再回车等待copilot编写代码
- 最后根据具体需求适当修改
示例:
想在python文件中编写一个函数将内容写入同目录下的 latex.md
文件
若干次回车后
# Define a function to overwrite the content in the latex.md file and open it with VSCode
def write_latex_md(content):
with open("latex.md", "w") as f:
f.write(content)
os.system("code latex.md")
4¶
在VSCode中使用github copilot聊天功能时,显示
搜索相关信息,找到
根据naveen-98的回答中的 Disable and re-enable GitHub Copilot
,禁用再重新启用github copilot插件之后,可以正常使用了
最后更新:
2024-02-03
创建日期: 2023-07-12
创建日期: 2023-07-12