如何在 raspberry pi 上更新到最新的 python 3.5.1 版本?
How do you update to the latest python 3.5.1 version on a raspberry pi?
我昨天拿到了我的 Raspberry Pi,我已经在尝试用它编写代码了。我有一个计划 运行 的程序,但它只与 Python 版本 3.5.0 或 3.5.1 兼容,我在互联网上找到的所有内容似乎都已过时,要做使用 Python 2 或与我的问题无关,因为我没有看到任何其他 100% 需要 Python 3.5 并且可以处理 3.4(当前预装)的东西。 .exe 文件在 Linux 上不起作用。我是 Raspberry Pi 和 Linux 的新手,因为我一直是 Windows 的用户。任何帮助表示赞赏。非常感谢 - 罗伯特
cd ~
wget https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tgz
tar -zxvf Python-3.5.1.tgz
cd Python-3.5.1
./configure && make && sudo make install
我会自己编译(确实有几次)。我假设您是 运行 Ubuntu 或 Raspbian。您应该能够 install the dependencies:
$ sudo apt-get install build-essential \
libncursesw5-dev \
libreadline5-dev \
libssl-dev \
libgdbm-dev \
libc6-dev \
libsqlite3-dev tk-dev \
libbz2-dev
然后去download the source解压,然后安装:
$ tar -xzvf https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tgz
$ cd Python-3.5.1
$ ./configure && make && sudo make install
如果您缺少依赖项,它可能会在 ./configure
步骤中终止。但如果一切正常,您将在 Raspberry Pi 上安装全新的 Python 3.5。恭喜!
我昨天拿到了我的 Raspberry Pi,我已经在尝试用它编写代码了。我有一个计划 运行 的程序,但它只与 Python 版本 3.5.0 或 3.5.1 兼容,我在互联网上找到的所有内容似乎都已过时,要做使用 Python 2 或与我的问题无关,因为我没有看到任何其他 100% 需要 Python 3.5 并且可以处理 3.4(当前预装)的东西。 .exe 文件在 Linux 上不起作用。我是 Raspberry Pi 和 Linux 的新手,因为我一直是 Windows 的用户。任何帮助表示赞赏。非常感谢 - 罗伯特
cd ~
wget https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tgz
tar -zxvf Python-3.5.1.tgz
cd Python-3.5.1
./configure && make && sudo make install
我会自己编译(确实有几次)。我假设您是 运行 Ubuntu 或 Raspbian。您应该能够 install the dependencies:
$ sudo apt-get install build-essential \
libncursesw5-dev \
libreadline5-dev \
libssl-dev \
libgdbm-dev \
libc6-dev \
libsqlite3-dev tk-dev \
libbz2-dev
然后去download the source解压,然后安装:
$ tar -xzvf https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tgz
$ cd Python-3.5.1
$ ./configure && make && sudo make install
如果您缺少依赖项,它可能会在 ./configure
步骤中终止。但如果一切正常,您将在 Raspberry Pi 上安装全新的 Python 3.5。恭喜!