2

我已经使用 conda 安装了 python cookiecutter:

conda config --add channels conda-forge
conda install coockiecutter

在 anaconda 提示符“ cookiecutter --version”中显示“1.6.0 来自d:\users\username\appdata\local\continuum\anaconda3\lib\site-packages.

在运行cookiecutter命令时git bash,它会给出错误“ bash: cookiecutter: command not found”。

我已经添加了cookiecutter安装在 Windows 环境变量“路径”中的路径。
你能建议我如何解决这个问题吗?

4

2 回答 2

0

您对 cookiecutter 的拼写错误。请检查

尝试:

sudo apt-get install cookiecutter

如果您使用的是 Mac。你也可以这样做:

brew install cookiecutter

使用康达:

conda install -c conda-forge cookiecutter
于 2020-05-20T09:53:04.057 回答
0

我已经在windows环境变量“path”中添加了cookiecutter的安装路径

然后确保打开一个将继承您的 PATH的新CMD 会话。

在输入“bash”之前,检查命令是否可以通过以下方式访问:

where cookiecutter

然后键入“ bash”并继续您的安装过程。

正如OP pratik shirbhate在评论中提到的那样:

目录路径中有一个更正,我可以用where命令捕获它

于 2019-02-21T05:54:13.030 回答