【python bug修复】——Script file ‘D:\softwares_install\Anaconda3\envs\PartTimes\Scripts\pip-scrip

目录

1、问题描述

2、问题解决

1)下载pip安装脚本

2) 运行安装pip脚本

3) 下载库


1、问题描述

利用pip命令进行库的安装时,突然出现这个问题,之前使用还好好的

Script file 'D:\softwares_install\Anaconda3\envs\PartTimes\Scripts\pip-scrip

出现这个问题其实就是pip工具出现了问题,因此需要进行pip工具重新安装

2、问题解决

1)下载pip安装脚本

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py # 下载pip安装脚本 

运行后会自动下载得到一个get-pip.py文件

get-pip.py文件部分内容如下:

#!/usr/bin/env python
#
# Hi There!
#
# You may be wondering what this giant blob of binary data here is, you might
# even be worried that we're up to something nefarious (good for you for being
# paranoid!). This is a base85 encoding of a zip file, this zip file contains
# an entire copy of pip (version 22.1).
#
# Pip is a thing that installs packages, pip itself is a package that someone
# might want to install, especially if they're looking to run this get-pip.py
# script. Pip has a lot of code to deal with the security of installing
# packages, various edge cases on various platforms, and other such sort of
# "tribal knowledge" that has been encoded in its code base. Because of this
# we basically include an entire copy of pip inside this blob. We do this
# because the alternatives are attempt to implement a "minipip" that probably
# doesn't do things correctly and has weird edge cases, or compress pip itself
# down into a single file.
#
# If you're wondering how this is created, it is generated using
# `scripts/generate.py` in https://github.com/pypa/get-pip.import systhis_python = sys.version_info[:2]
min_version = (3, 7)
if this_python < min_version:message_parts = ["This script does not work on Python {}.{}".format(*this_python),"The minimum supported Python version is {}.{}.".format(*min_version),"Please use https://bootstrap.pypa.io/pip/{}.{}/get-pip.py instead.".format(*this_python),]print("ERROR: " + " ".join(message_parts))sys.exit(1)import os.path
import pkgutil
import shutil
import tempfile
import argparse
import importlib
from base64 import b85decodedef include_setuptools(args):"""Install setuptools only if absent and not excluded."""cli = not args.no_setuptoolsenv = not os.environ.get("PIP_NO_SETUPTOOLS")absent = not importlib.util.find_spec("setuptools")return cli and env and absentdef include_wheel(args):"""Install wheel only if absent and not excluded."""cli = not args.no_wheelenv = not os.environ.get("PIP_NO_WHEEL")absent = not importlib.util.find_spec("wheel")return cli and env and absentdef determine_pip_install_arguments():pre_parser = argparse.ArgumentParser()pre_parser.add_argument("--no-setuptools", action="store_true")pre_parser.add_argument("--no-wheel", action="store_true")pre, args = pre_parser.parse_known_args()args.append("pip")if include_setuptools(pre):args.append("setuptools")if include_wheel(pre):args.append("wheel")return ["install", "--upgrade", "--force-reinstall"] + argsdef monkeypatch_for_cert(tmpdir):"""Patches `pip install` to provide default certificate with the lowest priority.This ensures that the bundled certificates are used unless the user specifies acustom cert via any of pip's option passing mechanisms (config, env-var, CLI).A monkeypatch is the easiest way to achieve this, without messing too much withthe rest of pip's internals."""from pip._internal.commands.install import InstallCommand# We want to be using the internal certificates.cert_path = os.path.join(tmpdir, "cacert.pem")with open(cert_path, "wb") as cert:cert.write(pkgutil.get_data("pip._vendor.certifi", "cacert.pem"))install_parse_args = InstallCommand.parse_argsdef cert_parse_args(self, args):if not self.parser.get_default_values().cert:# There are no user provided cert -- force use of bundled certself.parser.defaults["cert"] = cert_path  # calculated abovereturn install_parse_args(self, args)InstallCommand.parse_args = cert_parse_argsdef bootstrap(tmpdir):monkeypatch_for_cert(tmpdir)# Execute the included pip and use it to install the latest pip and# setuptools from PyPIfrom pip._internal.cli.main import main as pip_entry_pointargs = determine_pip_install_arguments()sys.exit(pip_entry_point(args))def main():tmpdir = Nonetry:# Create a temporary working directorytmpdir = tempfile.mkdtemp()# Unpack the zipfile into the temporary directorypip_zip = os.path.join(tmpdir, "pip.zip")with open(pip_zip, "wb") as fp:fp.write(b85decode(DATA.replace(b"\n", b"")))# Add the zipfile to sys.path so that we can import itsys.path.insert(0, pip_zip)# Run the bootstrapbootstrap(tmpdir=tmpdir)finally:# Clean up our temporary working directoryif tmpdir:shutil.rmtree(tmpdir, ignore_errors=True)DATA = b"""此处省略一万个字"""
if __name__ == "__main__":main()

2) 运行安装pip脚本

python get-pip.py # 运行安装脚本安装pip。

运行上述命令行,pip就安装好了可以利用pip命令进行库的下载了 

3) 下载库

pip install 库名

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/255391.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

项目中的那些事---下载pdf文件

最近做了一个下载pdf文档的需求&#xff0c;本以为使用HTML5中<a>标签的属性download就能简单搞定&#xff0c;不料IE竟然不支持这一简单粗暴的H5新特性&#xff0c;而是直接在网页中打开&#xff0c; 于是各种搜索之后得出以下结论&#xff1a;IE中下载文档时&#xff0…

MySQL日志分类及性能分析你应该知道的知识

为什么80%的码农都做不了架构师&#xff1f;>>> MySQL日志记录了MySQL数据库日常操作和错误信息&#xff0c;MySQL总共有四种类型的日志&#xff0c;通过分析这些日志可以查询到MySQL的运行情况、用户操作、错误信息等&#xff0c;可以为MySQL的管理和优化提供必要…

利用三个点(trsf)来实现各种规则图形的实现

在Val3,是使用trsf(x,y,z,rx,ry,rz)来实现三维空间点的位置与方向。 其中第一点和第二点位置很重要&#xff0c;第三点是用来确定方向。根据这三个点先确定一个用户坐标系。 在这个坐标系中&#xff0c;实现圆&#xff0c;三角形&#xff0c;矩形&#xff0c;腰圆&#xff0c;正…

android基础组件----Button的使用

按钮由文本或图标&#xff08;或文本和一个图标&#xff09;组成&#xff0c;当用户触摸到它时&#xff0c;会发生一些动作。今天我们开始Button的学习。少年的爱情永远不够用&#xff0c;一杯酒足以了却一件心事。 Button的简要说明 根据你是否想要一个带有文本的按钮&#xf…

@Repository、@Service、@Controller 和 @Component

Repository 、Service 、 Controller 、Component 这四个Spring注解 ,用于把加了注解的 类 加入到Spring 容器中管理&#xff0c;节省了xml 的繁重的配置&#xff0c;尽管如此xml 同样可以实现&#xff08;一般建议先搞懂xml&#xff09;。 Repository Repository注解便属于最先…

【pyqt5学习】——QTextEdit控件学习:获取文本、添加文本

目录 1、QTextEdit控件介绍 2、QTextEdit控件添加文本、添加HTML格式 3、QTextEdit控件获取文本、获取HTML格式文本 4、案例 1&#xff09;完整代码 2&#xff09;效果 1、QTextEdit控件介绍 QTextEdit控件是一个支持多行输入的输入框&#xff0c;支持HTML进行格式的设置 2…

空间变化

空间变化 第一种&#xff1a;圆 第二种: 矩形 第三种&#xff1a;正五边形 第四种:正六边形 第五种&#xff1a;腰圆 算法&#xff1a; 在规则图形&#xff08;不包括圆心-直径法&#xff09;中&#xff0c;等于或者超过三个点。一般的&#xff0c;利用p1,p2,p3来建立一个用户…

【pyqt5学习】——QAbstractButton学习(普通按钮QPushButton、工具按钮QToolButton、单选按钮QRadioButton、复选框按钮QCheckBox)

目录 1、按钮介绍 2、普通按钮QPushButton学习 1&#xff09;特殊模式——开关按钮&#xff08;toggle&#xff09; ①将按钮设置为可选择的 ②将按钮按下 判断按钮是否被按下 isChecked() 2&#xff09;给按钮设置前置图标setIcon() ​编辑 3&#xff09;按钮信号 4)完…

java 企业 网站源码 模版 屏幕自适应 有前后台 springmvc SSM 生成静态化

前台&#xff1a; 支持四套模版&#xff0c; 可以在后台切换点击&#xff1a;获取地址QQ 313596790官网 http://www.fhadmin.org/系统介绍&#xff1a;1.网站后台采用主流的 SSM 框架 jsp JSTL&#xff0c;网站后台采用freemaker静态化模版引擎生成html2.因为是生成的html&…

挖财后端架构简介

挖财后端技术用的主要是比较大众的东西&#xff0c;Web容器用Tomcat&#xff0c;框架主要是Spring MVC&#xff0c;也有少量的Play&#xff0c;中间服务层是Dubbo&#xff0c;微容器用Spring Boot&#xff0c;服务注册这一块是用ZooKeeper&#xff0c;核心业务开发方式还是围绕…

【pyqt5学习】——QcomboBox学习

目录 1、添加条目&#xff1a; 1)逐一添加 2&#xff09;批量添加 3&#xff09;获取当前选中的索引 4&#xff09;获取当前选中文本 5&#xff09;根据索引获取文本 6&#xff09;统计条目总数 7&#xff09;信号——当前选中的索引发生改变currentIndexChanged() 2、…

vSphere Client 编辑虚拟机属性的问题

vSphere Client 编辑虚拟机属性的问题 编辑虚拟机属性的时候&#xff0c; 出现&#xff1a; vpxclient.vmconfig.cpuid 初始值设置异常之类的&#xff0c;重置了&#xff0c; 并将注册表中的所有vmvare 相关键值删除了&#xff0c; 还是一样的。。 后面参照https://kb.vmware.c…

Val编程-系统架构

利用Val可以编写相对大型软件。 界面书写&#xff0c;运动轨迹规划&#xff0c;外部通讯&#xff0c;进程交互&#xff0c;文本读写.... GlobalData可以利用一个库来作为一个公用库&#xff0c;实现各个库的数据交互。 PublicFunc书写基本的通用函数来作为基本函数&#xff0c;…

poj 1256 Anagram—next_permutation的神奇应用

题意&#xff1a;给你一条字符串&#xff0c;让你输出字符串中字符的全排列&#xff0c;输出的顺序要按它给的奇葩的字典序。 题解&#xff1a;要输出全排列&#xff0c;暴力dfs可以过&#xff0c;但要注意题目的字典序以及相同字符的情况。如果用next_permutation()处理可以简…

【pyqt5学习】—— 滑动条Qslider、计数器QSpinBox学习

目录 1、滑动条QSlider 1)常用属性 2&#xff09;实例——利用滑动条来实现字体大小的修改 ​编辑 2、计数器QSpinBox 1&#xff09;属性方法 2&#xff09;实例 1、滑动条QSlider 1)常用属性 self.slider QSlider(Qt.Horizontal)# 设置最小值self.slider.setMinimum(2)…

shell常用命令之curl: -w,–write-out参数详解

顾名思义&#xff0c;write-out的作用就是输出点什么。curl的-w参数用于在一次完整且成功的操作后输出指定格式的内容到标准输出。 输出格式由普通字符串和任意数量的变量组成&#xff0c;输出变量需要按照%{variable_name}的格式&#xff0c;如果需要输出%&#xff0c;double一…

Val编程-速度因子

机械手臂在一个三个基本指令&#xff08;movel,movej,movec&#xff09;指令中有下面基本参数进行配置。 1. Frame toolField; Tcp的值2. Frame frameField;用户坐标系的值3. MoveType absRelField;绝对运动与相对运动4. Config configField;姿态5. BlendType blendTypeField;倒…

Node.js学习之路24——Express框架的app对象

1.express() 基于Node.js平台&#xff0c;快速、开放、极简的web开发框架。创建一个Express应用.express()是一个由express模块导出的入口top-level函数.const express require(express); let app express(); 1.1 静态资源管理 express.static(root, [options]) express.stat…

【pyqt5学习】——对话框QDialog学习(QMessageBox、QColorDialog、QFIleDialog、QFontDialog、QInputDialog)

目录 1、对话框QDialog类别 2、通用对话框 ​编辑 3、消息对话框QMessageBox() 1&#xff09;消息对话框QMessageBox类型 2&#xff09;案例 ​编辑 4、输入对话框QInputDialog 1) 类型 2&#xff09;案例 5、字体格式对话框QFontDialog 6、颜色对话框QColorDialog 1&…

使用 Mesos 管理虚拟机

摘要 为了满足渲染、基因测序等计算密集型服务的需求&#xff0c;UCloud 推出了“计算工厂”产品&#xff0c;让用户可以快速创建大量的计算资源&#xff08;虚拟机&#xff09;。该产品的背后&#xff0c;是一套基于 Mesos 的计算资源管理系统。本文简要介绍该系统的结构、Mes…