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

 

目录
相关文章
|
6月前
|
Linux Python
python2 安装 pip (Linux)
python2 安装 pip (Linux)
60 0
|
6月前
|
Linux Python
linux 安装 pip2 kali debian python python2
linux 安装 pip2 kali debian python python2
65 0
|
6天前
|
Ubuntu Python
Ubuntu 安装Python3.8
Ubuntu 安装Python3.8
31 0
|
Linux 编译器 C语言
CentOS 快速安装Python3和pip3
CentOS是经常使用的Linux系统之一,特别是作为服务器使用,其只自带了Python2,但是现在使用更广泛的是Python3,因此需要自行安装,同时为了更方便地安装第三方库,还需要安装pip3。
|
Linux
suse 12 安装 python-pip
suse 12 安装 python-pip
355 0
|
Ubuntu Python
Ubuntu下python的安装
python的安装
250 0
Ubuntu下python的安装
|
Linux Python
CentOS7 Linux下安裝python-pip (python2.7)
本文目录 1. 简介 2. CentOS7并未自带pip 3. 安装pip
359 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.
1492 0
|
Linux Python
Centos7安装python3.5.3及pip3
linux系统中一般自带python2版本,而由于许多应用程序依赖python2,所以不能删除。但是在编写.py文件时,想要使用python3,而且python3对编译源码包和系统之间没有任何影响,python2与python3能够共同安装在一台服务器上。
2146 0
|
网络安全 Python