当你试图上传你的包裹时,有没有人出现这样的错误?

   $ twine upload dist/*
   Uploading distributions to https://upload.pypi.org/legacy/
   Enter your username: MyUsername
   Enter your password: ********
   TypeError: expected string or bytes-like object

编辑:再次出现同样的错误,但这次为了修复它,我升级了thream,它再次开始工作。

最佳答案

更新绳线为我解决了问题。为此,请在执行twine upload dist/*之前执行以下命令:
python3 -m pip install --user --upgrade twine

关于python - Twine上传TypeError:期望的字符串或类似字节的对象,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49806586/

10-12 02:11