1、安装python3

        1)获取源码:

        wget https://www.python.org/ftp/python/3.10.7/Python-3.10.7.tgz

        2)解压:

        tar -zxvf Python-3.10.7.tgz

        3)配置:

        cd Python-3.10.7
        ./configure

        4)编译安装:

        make && make install

2、安装pip

       sudo apt-get install python-pip

3、升级pip

        python3 -m pip install -U pip

4、安装常用库 

        1)统计图处理库:matplotlib

        python3 -m pip install -U matplotlib

        2)excel处理库:pandas

        pip install pandas

        3)UI库:tkinter 
        sudo apt-get install python3-tk

        4)串口依赖库:serial

        pip install serial

        pip install pyserial

5、windows环境生成exe文件

        1)打开Windows电脑的cmd(Windows+r)。

        2)安装pyinstaller

        pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple pyinstaller

        3)生成exe文件

         pyinstaller --clean -F -c test.py

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐