第1讲:macOS安装python-3.8,运行helloworld.py。

开发操作系统为macOS Big Sur V11.6。如后续无特别说明,均是此环境。

由于baidu/lac 2.1依赖paddlepaddle最高1.8.5(使用2.1会报错lac 2.1.2 depends on paddlepaddle>=1.6),paddlepaddle 1.8.5此工具最高支持python3.8,因此选择了3.8。

先到官方下载安装文件,如果速度慢可以复制下载链接到迅雷中下载很快。
Python Releases for macOS | Python.orgThe official home of the Python Programming Languagehttps://www.python.org/downloads/macos/

双击下载的文件python-3.8.10-macosx10.9.pkg, 按向导提示完成安装。

在环境变量~/.zprofile中增加以下代码,并运行python3 -m pip install --upgrade pip升级pip。

PATH="/Library/Frameworks/Python.framework/Versions/3.8/bin:${PATH}"
export PATH
alias python3="/Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8"

打开终端,运行python3测试如下结果,表明安装成功。

MacBook-Pro Downloads % python3 -V
Python 3.9.6
MacBook-Pro Downloads % python3  
Python 3.9.6 (v3.9.6:db3ff76da1, Jun 28 2021, 11:49:53) 
[Clang 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> print('Hello World!')
Hello World!
>>> exit()
MacBook-Pro Downloads % python3 helloworld.py 
Hello World!

你可能感兴趣的:(python3.10开发讲解,macos,python,开发语言)