各种错误3

1.PyCharm 添加远程项目Interpreter 报 The authenticity of host can't be established 解决方法

选择Yes继续连接即可

2.Connecting to 192.168.2.108:80... failed: Connection timed out.
Retrying.

本地可以连接服务器,服务器ping不通本地,

3.Could not find a version that satisfies the requirement transformers==4.11.3 (from -r requirements.txt (line 1)) (from versions: 0.1, 2.0.0, 2.1.0, 2.1.1, 2.2.0, 2.2.1, 2.2.2, 2.3.0)
No matching distribution found for transformers==4.11.3 (from -r requirements.txt (line 1))

pip install transformers==4.11.3 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

4.Command "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-KX2XRq/sentencepiece/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-NpcLDr-record/install-record.txt --single-version-externally-managed --compile --user --prefix=" failed with error code 1 in /tmp/pip-build-KX2XRq/sentencepiece/

猜你喜欢

转载自blog.csdn.net/steven_bingo/article/details/127350931