首页后端开发Pythonconda可执行文件路径为空

conda可执行文件路径为空

时间2023-06-05 18:50:02发布访客分类Python浏览293
导读:conda可执行文件路径为空?答案如下经常在路径中有空格,就会出现错误,比如以下:conda create --prefix=D:\Program Files (x86 \python\Python36-32 python=3.6在cond...

conda可执行文件路径为空?

答案如下

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

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

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

PackagesNotFoundError: The following packages are not available fromCurrent channels:- \python\python36-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 searchfor 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)\python\Python36-32" python=3.6

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

PackagesNotFoundError: The following packages are not available from current channels:

- \python\python36-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

声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!


若转载请注明出处: conda可执行文件路径为空
本文地址: https://pptw.com/jishu/62903.html
如何在mac上运行python EXCEL从系统导出来后乱码怎么办

游客 回复需填写必要信息