我正在尝试使用pip在Github上安装一个forked repo(https://github.com/theatlantic/django-ckeditor/),但没有成功.
我用的时候
pip install -e git+git://github.com/theatlantic/django-ckeditor.git#egg=django-ckeditor
Run Code Online (Sandbox Code Playgroud)
它确实安装了repo的内容,但是它的旧版本没有我感兴趣的新更改.所以我试图强制pip来获得最新的分支,这显然是atl/4.3.x但我觉得这很奇怪错误,如果分支的名称不正确或类似的东西:
$ pip install -e git+git://github.com/theatlantic/django-ckeditor.git@"atl/4.3.x"#egg=django-ckeditor
Obtaining django-ckeditor from git+git://github.com/theatlantic/django-ckeditor.git@atl/4.3.x#egg=django-ckeditor
Updating /home/mathx/.virtualenvs/goblets/src/django-ckeditor clone (to atl/4.3.x)
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Clone of 'git@github.com:theatlantic/ckeditor-dev.git' into submodule path 'ckeditor/static/ckeditor/ckeditor-dev' failed
Run Code Online (Sandbox Code Playgroud)
我在某个地方犯了错误吗?
谢谢.
我必须手动在 Markdown 中格式化很多文件,并且经常必须将一些孤立的单词用反引号括起来,以将它们放入代码范围中,即。: 对象.方法 -> `对象.方法`
我正在使用 vim,我想知道如何编写并映射到某个键的命令,该命令会在光标下的单词周围加上反引号,例如只需按 F1 ?
谢谢 !