当前位置: 首页>>代码示例>>Python>>正文


Python wheel.move_wheel_files方法代码示例

本文整理汇总了Python中pip._internal.wheel.move_wheel_files方法的典型用法代码示例。如果您正苦于以下问题:Python wheel.move_wheel_files方法的具体用法?Python wheel.move_wheel_files怎么用?Python wheel.move_wheel_files使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pip._internal.wheel的用法示例。


在下文中一共展示了wheel.move_wheel_files方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: move_wheel_files

# 需要导入模块: from pip._internal import wheel [as 别名]
# 或者: from pip._internal.wheel import move_wheel_files [as 别名]
def move_wheel_files(
        self,
        wheeldir,  # type: str
        root=None,  # type: Optional[str]
        home=None,  # type: Optional[str]
        prefix=None,  # type: Optional[str]
        warn_script_location=True,  # type: bool
        use_user_site=False,  # type: bool
        pycompile=True  # type: bool
    ):
        # type: (...) -> None
        move_wheel_files(
            self.name, self.req, wheeldir,
            user=use_user_site,
            home=home,
            root=root,
            prefix=prefix,
            pycompile=pycompile,
            isolated=self.isolated,
            warn_script_location=warn_script_location,
        )

    # Things valid for sdists 
开发者ID:PacktPublishing,项目名称:Mastering-Elasticsearch-7.0,代码行数:25,代码来源:req_install.py

示例2: move_wheel_files

# 需要导入模块: from pip._internal import wheel [as 别名]
# 或者: from pip._internal.wheel import move_wheel_files [as 别名]
def move_wheel_files(
        self,
        wheeldir,  # type: str
        root=None,  # type: Optional[str]
        home=None,  # type: Optional[str]
        prefix=None,  # type: Optional[str]
        warn_script_location=True,  # type: bool
        use_user_site=False,  # type: bool
        pycompile=True  # type: bool
    ):
        # type: (...) -> None
        wheel.move_wheel_files(
            self.name, self.req, wheeldir,
            user=use_user_site,
            home=home,
            root=root,
            prefix=prefix,
            pycompile=pycompile,
            isolated=self.isolated,
            warn_script_location=warn_script_location,
        )

    # Things valid for sdists 
开发者ID:boris-kz,项目名称:CogAlg,代码行数:25,代码来源:req_install.py

示例3: move_wheel_files

# 需要导入模块: from pip._internal import wheel [as 别名]
# 或者: from pip._internal.wheel import move_wheel_files [as 别名]
def move_wheel_files(self, wheeldir, root=None, home=None, prefix=None,
                         warn_script_location=True, use_user_site=False,
                         pycompile=True):
        move_wheel_files(
            self.name, self.req, wheeldir,
            user=use_user_site,
            home=home,
            root=root,
            prefix=prefix,
            pycompile=pycompile,
            isolated=self.isolated,
            warn_script_location=warn_script_location,
        ) 
开发者ID:HaoZhang95,项目名称:Python24,代码行数:15,代码来源:req_install.py

示例4: move_wheel_files

# 需要导入模块: from pip._internal import wheel [as 别名]
# 或者: from pip._internal.wheel import move_wheel_files [as 别名]
def move_wheel_files(self, wheeldir, root=None, home=None, prefix=None,
                         warn_script_location=True, use_user_site=False,
                         pycompile=True):
        move_wheel_files(
            self.name, self.req, wheeldir,
            user=use_user_site,
            home=home,
            root=root,
            prefix=prefix,
            pycompile=pycompile,
            isolated=self.isolated,
            warn_script_location=warn_script_location,
        )

    # Things valid for sdists 
开发者ID:Relph1119,项目名称:GraphicDesignPatternByPython,代码行数:17,代码来源:req_install.py


注:本文中的pip._internal.wheel.move_wheel_files方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。