ubuntu install pip

ubuntu 安装pip

  1. sudo apt-get update
  2. sudo apt-get upgrade
  3. sudo apt-get install python-pip

原文地址:https://www.cnblogs.com/braveheart007/p/10398298.html

时间: 2024-11-07 03:23:38

ubuntu install pip的相关文章

ubuntu更换pip install,apt-get,conda install 成国内源

解决ubuntu的pip和apt-get太慢的问题 ubuntu国外龟速的源实在难受,还是自己动手更改一下各种pip 源和apt-get 的源吧,换了之后速度令人舒适! 更换pip源成清华源 临时使用: 可以在使用pip的时候加参数-i https://pypi.tuna.tsinghua.edu.cn/simple例如 pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple 这样就从清华这边的镜像去安装open

ubuntu使用pip可能问题

ubuntu使用pip可能因为版本问题会出现以下问题 Traceback(most recent call last): File "/usr/bin/pip3", line 5, in<module> from pkg_resources import load_entry_point File"/home/USERNAME/.local/lib/python3.4/site-packages/pkg_resources/__init__.py",li

install pip on windows

Download Setuptools and pip You can download pip from github Setuptools from bitbucketAnd confirm this aren’t harmful. Open Console As an Admin, just open console in the download folder. And run, python ez_setup.pypython get-pip.py Additional Recomme

[Ubuntu] Install teamviewer9 on Ubuntu14.04_x64

The article copied from http://ubuntuhandbook.org/index.php/2013/12/install-teamviewer-ubuntu-1404/ TeamViewer 9 Stable now is available. It features multiple connections in tabs, wake-on-lan, two step authentication, shared clipboard and more. This

ubuntu install rpm

简单来说,Ubuntu的软件包格式是deb,如果要安装rpm的包,则要先用alien把rpm转换成deb. sudo apt-get install alien #alien默认没有安装,所以首先要安装它 sudo alien xxxx.rpm #将rpm转换位deb,完成后会生成一个同名的xxxx.deb sudo dpkg -i xxxx.deb #安装 注意,用alien转换的deb包并不能保证100%顺利安装,所以可以找到deb最好直接用deb 有时候,我们想要使用的软件并没有被包含到

ubuntu18.04 install pip

1. environment release version: bionic kernel version:4.15.0-29-generic 2.install pip 2.1 sudo apt-get install python3-distutils (resolve a problem:ImportError:cannot import name 'sysconfig') 2.2 wget https://bootstrap.pypa.io/get-pip.py 2.3 sudo pyt

yum -y install pip No package pip available. Error: Nothing to do

centos下安装pip时失败: [[email protected] ~]# yum -y install pipLoaded plugins: fastestmirror, refresh-packagekit, securityLoading mirror speeds from cached hostfile* base: mirrors.tuna.tsinghua.edu.cn* extras: mirrors.tuna.tsinghua.edu.cn* updates: mirror

ubuntu下pip install mysql-python 失败的解决方案

ubuntu连接mysql 需要安装mysql-python 出现can not find mysql-config 文件错误 先安装 sudo apt-get install libmysqld-dev 安装后出现 linux-gcc错误 apt-get install python-dev 接下来执行安装 pip install mysql-python   安装成功

(ubuntu) pip install scandir 时出现错误 fatal error: Python.h: No such file or directory

安装 jupyter时遇到这个问题,在这里查到了解决方法,特记录一下. 解决方式为: 先安装 python-dev: $ sudo apt-get install python-dev 然后再安装需要的包: pip install scandir