Python 修炼记

新手在刚开始接触 Python 的过程中,常会遇到一些问题,下面记录一些我之前遇到的:

(1)macOS 终端 报错如下所示:

Traceback (most recent call last):
File “FreeForWenku.py”, line 1, in
import requests
ImportError: No module named requests

终端输入:

python -m pip install requests

等待完成安装,即可。
举一反三:
遇到 No module named XXX,都可以尝试用 python -m pip install XXX 来解决。

(2)当 PYCharm 找不到 python 的配置信息时,如下图所示,会提示 No Python interpreter configured for the project:

image.png

点上图蓝色部分的文字 Configure Python interpreter,会打开IDE 的偏好设置,我们选 Show All…,如下图:

image.png

image.png

image.png

image.png

image.png

image.png

重新回到代码编辑界面时,之前提示的 No Python interpreter configured for the project 就会自动消失掉。问题就解决了。

【信息由网络或者个人提供,如有涉及版权请联系COOY资源网邮箱处理】

© 版权声明
THE END
喜欢就支持一下吧
点赞5 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容