Ubuntu + python pip遇到的问题

今天在做Flask跨源资源共享(CORS)的时候在安装flask-cors时遇到了两个问题。

首先我是在Ubuntu环境下安装的,整了好一会才弄得出来,现在整理一下。

安装flask-cors

pip install -U flask-cors

一开始这样安装的时候出现Consider using the ‘--user‘ option or check the permissons。的问题,然后就

sudo pip install -U flask-cors

然后又出现 ImportError:cannot import name main上网查了一下说是因为我的pip版本更新到了10.0.0后库里的函数有所改动造成的,

解决方案是:

sudo gedit /usr/bin/pip

from pip import main
if __name__ == "__main__":
    sys.exit(main())

修改为

from pip import __main__
if __name__ == "__main__":
    sys.exit(__main__._main())

保存退出,就成功了。

原文地址:https://www.cnblogs.com/juan-F/p/9687152.html

时间: 2024-11-05 12:26:20

Ubuntu + python pip遇到的问题的相关文章

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

ubuntu python opencv3 cv2.cv2 has no attribute &#39;face&#39; &#39;cv2.face&#39; has no attribute &#39;createEigenFaceRecognizer&#39;

学习opencv过程中遇到错误: 1  cv2.cv2 has no attribute 'face' 经过一顿查,,,各种走弯路 最后一下子就解决了: pip install opencv-python pip install opencv0-contrib-python 这俩装完了就行了 2  'cv2.face' has no attribute 'createEigenFaceRecognizer' 这个错误 查完了人家让你看文档,很无聊, opencv改接口了 现在用 cv2.face

python pip fatal error in launcher unable to create process using

用pip安装一个包,不知道为啥,就报了这个错误:python pip fatal error in launcher unable to create process using “” 百度了一下,用下面的命令可以解决,搞定 python2 -m pip install XXX  另外,Python3 的pip我用python3 -m pip install --upgrade pip 搞定

Python pip 学习

pip 是一个安装和管理 Python 包的工具 , 是 easy_install 的一个替换品.本文将详细说明 安装 pip 的方法和 使用 pip 的一些基本操作如安装.更新和卸载 python 包.在线文档地址:http://pip.readthedocs.org/en/latest/index.html. 用pip可方便的管理Python的包,详细信息可参看在线文档. Python pip 学习,布布扣,bubuko.com

python pip install

Windows: 先要安装python,确定将python的安装目录下面的python.exe加入到环境变量.点击环境变量 -> 点击PATH -> 在最后面加上我们的Python安装路径 -> 点击确定. 1). 首先安装easy_install 下载地址:https://pypi.python.org/pypi/ez_setup 解压,安装. 会在D:\Python2.7.8\Scripts下面增加easy_install.exe等几个exe文件.cd到这个目录下面执行: pytho

Python pip windows安装

参考页面: [1] : https://pip.pypa.io/en/latest/installing.html [2] : http://stackoverflow.com/questions/4750806/how-to-install-pip-on-windows/ 最方便的方法就是去下载:https://raw.github.com/pypa/pip/master/contrib/get-pip.py,实际上是一个base64编码的zip包+自解压python程序 放到python安装

python pip install tables couldn&#39;t find microsoft vc++ 9.0 (vcvarsall.bat)

if you have install microsoft visual studio 2013, just create a the enviroment variable named [VS90COMNTOOLS] and point it to %VS120COMNTOOLS%. because python(2.7.8) use micorsoft visual vc++ 9.0 compiler (shipped with visual studio 2008) to compile

python pip ez_setup.py

#!/usr/bin/env python """Bootstrap setuptools installation To use setuptools in your package's setup.py, include this file in the same directory and add this to the top of your setup.py:: from ez_setup import use_setuptools use_setuptools()

python pip使用报错:Fatal error in launcher: Unable to create process using &#39;&quot;&#39;

系统win7 解决方法: python3: python3 -m pip install --upgrade pip python2: python2 -m pip install --upgrade pip 注意:python2, python3共存时,将python安装目录下的python.exe改成对应的python2.exe,python3.exe python pip使用报错:Fatal error in launcher: Unable to create process using