zoukankan      html  css  js  c++  java
  • 在路径中有空格时,如何处理???

    经常在路径中有空格,就会出现错误,比如以下:

    conda create --prefix=D:Program Files (x86)pythonPython36-32 python=3.6

    在conda进行指定python环境时,由于Program Files (x86)含有空格,会出现以下错误:

    PackagesNotFoundError: The following packages are not available from current channels:
    
      - pythonpython36-32
      - files
    
    Current channels:
    
      - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/win-64
      - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/noarch
    
    To search for alternate channels that may provide the conda package you're
    looking for, navigate to
    
        https://anaconda.org
    
    and use the search bar at the top of the page.

    但是去掉空格就可以正常创建,所以时空格原因,这里的处理办法是:给路径加上双引号。如下:

    conda create --prefix="D:Program Files (x86)pythonPython36-32" python=3.6

    这时候就可以顺利执行了。

    PackagesNotFoundError: The following packages are not available from current channels:
      - pythonpython36-32  - files
    Current channels:
      - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/win-64  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/noarch
    To search for alternate channels that may provide the conda package you'relooking for, navigate to
        https://anaconda.org
    and use the search bar at the top of the page.

  • 相关阅读:
    谈谈对程序猿的管理
    OFMessageDecoder 分析
    [LeetCode-21]Construct Binary Tree from Preorder and Inorder Traversal
    leetcode第一刷_Rotate Image
    [二次开发]dede文章页面怎样显示作者的头像
    MapReduceTopK TreeMap
    安卓3d引擎
    LeetCode::Sort List 具体分析
    杨帆之工作日志-2014.6.24
    CF1109F Sasha and Algorithm of Silence's Sounds
  • 原文地址:https://www.cnblogs.com/Jerry-home/p/9883241.html
Copyright © 2011-2022 走看看