【macOS】【zsh报错】zsh: command not found: python

【macOS】【zsh Error】zsh: command not found: python

本地已经安装了Python,且能在Pycharm中编译Python程序并运行。

但是,在macOS终端,运行Python,报错。

首先要确认你在macOS系统下,是否安装了Python。

如果安装了,还要确认Python名称。

例如,我在终端输入python,报错:zsh: command not found: python。

而实际上,我的Python,安装在路径:/usr/local/bin

且文件名为:Python3.

所以,需要在终端输入:python3,才能正确运行。


下面是配置环境变量的步骤:


There are a few possible reasons why you might be getting this error:

1. Python is not in your PATH:

  • Check the installation location:

    Make sure you installed Python to a directory that is in your system's PATH.

    Common locations include /usr/local/bin or /opt/anaconda3/bin.

  • Add the directory to your PATH:

    If the directory is not in your PATH,

    you can add it by editing your .zshrc or .bash_profile file.

    For example,

    if Python is installed in /usr/local/bin,

    you would add the following line to your .zshrc file:

    Bash

    复制代码
    export PATH="/usr/local/bin:$PATH"

    【Note】:

    Goodmao has successfully completed the Python installation and configured the PATH environment variable.

    复制代码
    vi ~/.bash_profile
    /usr/local/bin 
  • Restart your terminal:

    After making changes to your .zshrc or .bash_profile file,

    you need to restart your terminal for the changes to take effect.

2. You're using the wrong shell:

  • Make sure you're using the correct shell.
    If you're using a different shell, such as bash,
    you might need to use a different command to start Python.
    For example, in bash, you would use python3 instead of python.

3. Python is not installed correctly:

  • If you're still having trouble, it's possible that Python is not installed correctly.
    Try reinstalling Python or checking the installation logs for any errors.

Here's a summary of the steps you can take to resolve the issue:

  1. Check the installation location:
    Make sure Python is installed in a directory that is in your PATH.
  2. Add the directory to your PATH:
    If necessary, add the directory to your .zshrc or .bash_profile file.
  3. Restart your terminal:
    Restart your terminal for the changes to take effect.
  4. Try using a different shell:
    If you're using a different shell, try using the appropriate command to start Python.
  5. Reinstall Python:
    If all else fails, try reinstalling Python.
相关推荐
sayang_shao4 分钟前
C++智能指针【笔记】
开发语言·c++·笔记
人道领域7 分钟前
【零基础学java】(Stream流)
java·开发语言
mg6688 分钟前
0基础开发学习python工具_____用 Python 从零写一个贪吃蛇游戏:完整实现 + 打包成 .exe(附源码)
python·游戏·pygame·python开发
两个蝴蝶飞16 分钟前
Java量化系列(九):实现股票列表自动同步,精准监控新增、更名与退市动态
java·开发语言
@zulnger21 分钟前
python 学习笔记(对象的方法)
笔记·python·学习
独自破碎E27 分钟前
Java对象是怎么在虚拟机中存储的?
java·开发语言
B站计算机毕业设计之家27 分钟前
大数据毕业设计:基于python图书数据分析可视化系统 书籍大屏 爬虫 清洗 可视化 当当网书籍数据分析 Django框架 图书推荐 大数据
大数据·爬虫·python·机器学习·自然语言处理·数据分析·课程设计
坚持学习前端日记31 分钟前
Android JS桥技术深度解析
android·开发语言·javascript
兮动人42 分钟前
打破 OS 壁垒:Java 跨平台硬件信息采集的“终极方案”
java·开发语言
一路往蓝-Anbo1 小时前
STM32单线串口通讯实战(一):物理层拓扑与STM32G0硬件配置
c语言·开发语言·stm32·单片机·嵌入式硬件·物联网