问题描述:
SSH:Enter passphrase for key
Could not open a connection to your authentication agent.
解决思路:
——
解决方法:
ssh-agent bash
问题描述:
SSH:Enter passphrase for key
Could not open a connection to your authentication agent.
解决思路:
——
解决方法:
ssh-agent bash
问题描述:
ssh连接生成私钥后,仅首次连接才能使用,往后不能使用。
解决思路:
电脑可能在长时程上有多个钥匙对,需要用config来指明使用对象。
解决方法:
配置.ssh/config
。
问题描述:pip3 install crypto
后,仍然无法读取模块。
解决思路:考虑是模组命名问题。
解决方法:打开Python环境模组安装位置,修改crypto文件夹的名称。
选择安全性更高的pycryptodome
。pip3 install pycryptodome
。
问题描述:Git Bash下运行代码输出中文文本时出现乱码和未成功显示,英文如常。
解决思路:考虑是编码问题。
解决方法:右键打开Options,在text选项卡中,如下图所示修改编码即可。
问题描述:
No matching distribution found for win32com
解决思路:
考虑是模组命名问题。
解决方法:
pip install win32com
pip3 install pypiwin32
pip3 install pywin32
其中,pypiwin32
是pywin32
的过时版本,应该避免使用它,而使用目前仍在更新的pywin32
。
参考链接:
问题描述:
from iso639 import languages
ImportError: cannot import name 'languages'
解决思路:考虑是模组命名问题。
解决方法:有错误的同名模组。在安装时应为,pip install iso-639
。
参考链接:
https://pypi.org/project/iso-639/
https://pypi.org/project/iso639/