我正在用ansible自动安装conda,但是激活conda的最后一步(conda init)失败了。
--- - hosts: all gather_facts: true tasks: - name: Ansible copy file to remote server copy: src: ~/Downloads/Anaconda3-2019.03-Linux-x86_64.sh dest: ~/Downloads/Anaconda3-2019.03-Linux-x86_64.sh - name: Run the installer Anaconda command: bash ~/Downloads/Anaconda3-2019.03-Linux-x86_64.sh -b - name: add path shell: export PATH=~/anaconda3/bin:$PATH - name: initialize conda shell: init conda args: executable: /bin/bash
错误:
>
您似乎执行了错误的命令。应该是“conda init”而不是“init conda”
您可以将两个shell任务组合在一个中并执行它。更新后的代码如下:
---
- hosts: all
gather_facts: true
tasks:
- name: Ansible copy file to remote server
copy:
src: ~/Downloads/Anaconda3-2019.03-Linux-x86_64.sh
dest: ~/Downloads/Anaconda3-2019.03-Linux-x86_64.sh
- name: Run the installer Anaconda
command: bash ~/Downloads/Anaconda3-2019.03-Linux-x86_64.sh -b
- name: Add path and initialize conda
shell: export PATH=~/anaconda3/bin:$PATH && conda init
args:
executable: /bin/bash
问题内容: 我有一些已经在使用的JBoss webapp,还有一个懒惰的初始化问题。因此,建议我在Spring进行调查并使用。 但是,我仍然会收到错误消息,希望您能对我有所帮助?要使用Spring OEM过滤器,我还需要在应用程序中进行哪些更改? 我的设置是这样的: + jsf的东西。 我将其设置如下:web.xml applicationContext.xml: persistence.xml:
问题内容: 每当我尝试访问phpMyAdmin时,都会出现以下错误: “ 缺少mbstring扩展名。请检查您的PHP配置。 ” 我在CentOS 7服务器上运行LEMP堆栈。我选择使用PHP 7进行此安装。我在运行早期版本的PHP的相同设置上没有遇到此错误。 即使 mbstring.ini (/etc/php.d/)包含以下内容,也会返回false : 我100%确定mbstring模块已安装在
问题内容: 我希望您能从该示例中了解到我想要做什么。我该如何在Go中执行此操作? 问题答案: (点击播放)
问题内容: 我有一个简单的log4j.property文件和一个使用log4j的简单程序。但是当我运行罐子时,我只会看到 这是我使用记录器的方法: 这是我的pom.xml的一部分 这是我的log4j.properties 现在从我的项目目录运行jar文件。这是我的项目目录 问题答案: 将log4j.properties文件放在src / main / resources中,以便将其捆绑到您的JAR
我在这里缺少任何配置吗?我在谷歌上找不到任何东西...
我有一个使用MIP SDK的Azure函数,当调用< code>MIP时,我得到以下错误。CreateMipContext(...): 令人惊讶的是,该错误仅在 Azure 上运行时发生。在本地运行时,一切都很好。 我正在使用MIP SDK v1.8.86和.NET Core 3.1。 知道OneDS是什么或者是什么导致了错误吗?