自学内容网 自学内容网

安装Anaconda所遇到的一些问题

问题一

如果安装时,无法把下面的√打上,则先不管:

在这里插入图片描述

解决方式一

安装好后,需要单独配置环境变量(假设D:\Anaconda是Anaconda的安装路径):

D:\SmallTools\Anaconda3
D:\SmallTools\Anaconda3\Scripts
D:\SmallTools\Anaconda3\Library\bin

解决方式二

在安装过程中,有一个Install for: Just me,或者All Users,如果直接选择 Just Me,是可以勾选上的,如果选择了All Users,则无法勾选。其实安装过程中,选哪个都可以。

问题二

配置国内pip源:

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip config set install.trusted-host https://pypi.tuna.tsinghua.edu.cn

用于设置Python包管理工具pip的全局和安装时的信任主机。
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple:这条命令将全局的包索引URL设置为清华大学的PyPI镜像站点,这样在从这个镜像站点下载包时,通常会比从官方源下载更快。

pip config set install.trusted-host https://pypi.tuna.tsinghua.edu.cn:这条命令将安装时的信任主机设置为清华大学的PyPI镜像站点,这样在安装来自这个镜像站点的包时,也会从这个镜像站点下载,而不是从其他地方下载。

查看配置:

pip config list

问题三

C:\Users\shaonaiyi>conda activate MS18

CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
If using 'conda activate' from a batch script, change your
invocation to 'CALL conda.bat activate'.

To initialize your shell, run

    $ conda init <SHELL_NAME>

Currently supported shells are:
  - bash
  - cmd.exe
  - fish
  - tcsh
  - xonsh
  - zsh
  - powershell

See 'conda init --help' for more information and options.

IMPORTANT: You may need to close and restart your shell after running 'conda init'.

解决

如果你是cmd.exe打开了窗口的话,则执行:

conda init cmd.exe

执行完,重新打开cmd即可。

彩蛋

自动输入y,删除环境:

echo y | conda remove -n MS17 --all

原文地址:https://blog.csdn.net/shaock2018/article/details/133224106

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!