TypeError: join() argument must be str, bytes, or os.PathLike object, not 'NoneType'
时间: 2023-11-27 14:38:57 浏览: 473
解决TypeError: expected str, bytes or os.PathLike object, not int
这个错误是由于在函数join()中传入了一个int类型的参数,而函数要求传入的参数必须是str或bytes类型的。要解决这个问题,你可以尝试将参数转换为str或bytes类型。如果你在使用pip install命令时遇到这个错误,可以尝试重新安装pip,具体步骤如下:
1. 下载get-pip.py文件:
curl https://bootstrap.pypa.io/pip/3.5/get-pip.py -o get-pip.py
2. 运行get-pip.py文件:
python get-pip.py
这样做将会安装最新版本的pip,解决TypeError错误。希望对你有所帮助。
阅读全文