Debian for ARM install python 3.5.x

简介: /********************************************************************************** * Debian for ARM install python 3.5.x * 说明: * 记录python3.5的安装方法,同时记录python3的pip的安装方法。
/**********************************************************************************
 *                   Debian for ARM install python 3.5.x
 * 说明:
 *     记录python3.5的安装方法,同时记录python3的pip的安装方法。
 *                              
 *                                              2017-2-20 深圳 南山平山村 曾剑锋
 ********************************************************************************/

1. ref:
    1. Download Page for python3.5_3.5.3-1_armhf.deb on ARM Hard Float machines
        https://packages.debian.org/sid/armhf/python3.5/download

2. resolve:
    1. You should be able to use any of the listed mirrors by adding a line to your /etc/apt/sources.list like this:
        deb http://ftp.de.debian.org/debian sid main 
2. apt-get update
3. apt-get install python3.5
3. pip: 1. How to install pip with Python 3? http://stackoverflow.com/questions/6587507/how-to-install-pip-with-python-3 2. install module: root@aplex:/# pip3 install python-can qemu: Unsupported syscall: 384 The directory '/home/aplex/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. The directory '/home/aplex/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. Collecting python-can Downloading python_can-1.5.2-py3-none-any.whl (79kB) 100% |████████████████████████████████| 81kB 164kB/s Installing collected packages: python-can Successfully installed python-can-1.5.2

 

目录
相关文章
|
5月前
|
Linux Python
python2 安装 pip (Linux)
python2 安装 pip (Linux)
56 0
|
5月前
|
Linux Python
linux 安装 pip2 kali debian python python2
linux 安装 pip2 kali debian python python2
57 0
|
3月前
|
Python
RHEL9安装Python2.7
RHEL9作为2022年5月新推出的版本,较RHEL8有了很多地方的改进,而且自带很多包,功能非常强大,稳定性和流畅度也较先前版本有了很大的提升。RHEL9自带python3.9,但是过高版本的python不可避免地会导致一些旧版本包地不兼容,比如换yum源时就会报错,因此笔者写这篇文章介绍如何在RHEL9上安装旧版本的python,以python2.7为例。
24 0
|
Linux 编译器 C语言
CentOS 快速安装Python3和pip3
CentOS是经常使用的Linux系统之一,特别是作为服务器使用,其只自带了Python2,但是现在使用更广泛的是Python3,因此需要自行安装,同时为了更方便地安装第三方库,还需要安装pip3。
|
Linux
suse 12 安装 python-pip
suse 12 安装 python-pip
350 0
|
Ubuntu Python
Ubuntu下python的安装
python的安装
243 0
Ubuntu下python的安装
|
Linux Python
CentOS7 Linux下安裝python-pip (python2.7)
本文目录 1. 简介 2. CentOS7并未自带pip 3. 安装pip
356 0
|
C语言 Python
rhel7安装python3
wget https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tgz  下载  tar -zxvf Python-3.5.
1657 0
|
Linux Python 网络安全
Centos安装Python3(自带pip和setuptools)
安装zlib相关依赖 解决zipimport.ZipImportError: can’t decompress data和pip3 ssl证书问题 sudo yum -y install zlib* sudo yum install openssl-devel 找到Python3下载链接 进入官网 选择对应版本 选一个你喜欢的Python3版本, 建议3.
1488 0
|
网络安全 Python