Tensorflow教程:使用过程中的常见问题
2024-06-21 21:28:55 2025-01-31 08:49:57 李腾 27 次阅读 0 次点赞
常见问题
1、执行pip install -–upgrade pip报错:ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问。
执行以下代码即可:
pip install --user --upgrade pip
2、WARNING: The script wheel.exe is installed in 'C:\Users\{User}\AppData\Roaming\Python\Python39\Scripts' which is not on PATH.。
将C:\Users\{User}\AppData\Roaming\Python\Python39\Scripts\添加到环境变量中即可。
本文由人工编写,AI优化,请仔细甄别,转载请注明转自www.hylab.cn,原文地址:Tensorflow教程:使用过程中的常见问题