随笔分类 - python的安装问题
摘要:cmd输入pip3 list命令报错 Fatal error in launcher: Unable to create process using '"d:\old_files\py3.6\python.exe" "E:\py3.6\Scripts\pip3.exe" list' 进入python
阅读全文
摘要:sudo apt-get install python3-pip 安装python3 sudo apt-get install python3.6 卸载python3 sudo apt autoremove python3.6
阅读全文
摘要:在ubuntu中,升级了pip3,再次使用pip3安装相关的python包的时候就出现以下错误 解决:pip3文件在/usr/bin目录下,cd进去,进行以下修改 把下面三行 换成下面三行 问题解决,如果在pip时遇到权限问题,加sudo 如遇到超时或下载很慢,可以用豆瓣源下载 pip3 insta
阅读全文
摘要:国内源: 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 华中理工大学:htt
阅读全文
摘要:如果你的电脑里装了两个python,就会有两个pip,一个是pip2,一个是pip3,还有可能出现一个既没有2也没有3的pip,一般情况下,pip等于pip2 有时候我们使用pip安装东西会提示我们pip的版本过低,建议我们升级 升级pip3 pip3 install --upgrade pip
阅读全文
摘要:在终端输入命令报错后,在网上找到了这篇博客,用easy_install命令安装pip,问题解决 Fatal error in launcher: Unable to create process using '"d:\old_files\py3.6\python.exe" "D:\py3.6\Scr
阅读全文