如何在 Ubuntu 中使用 Codon 运行 Python 代码

如何在 Ubuntu 中使用 Codon 运行 Python 代码

我有一个 Python 代码,我想使用密码子运行它。为此,我首先需要安装它。我将代码复制并粘贴 /bin/bash -c "$(curl -fsSL https://exaloop.io/install.sh)" 到终端中。每次运行此代码时,它都会再次安装 codon,然后我会看到以下结果。

PATH export command:
  export PATH=/home/aaron/.codon/bin:$PATH
Could not find bash configuration file to update PATH
Codon successfully installed at: /home/aaron/.codon
Open a new terminal session or update your PATH to use codon

我的 Python 文件 code.py 位于 Downloads 文件夹中。现在,要运行代码,我在 Downloads 文件夹中打开终端,使用命令codon run code.py。但是,当我这样做时,我遇到了以下错误。如果您能告诉我如何修复它,我将不胜感激。

Command 'codon' not found, did you mean:
  command 'codonw' from deb codonw (1.4.4-6)
Try: sudo apt install <deb name>

我应该补充一下,我刚刚安装了 Ubuntu,对它不太熟悉。我是 Windows 用户!

答案1

将以下行添加到您的$HOME/.bashrc文件中。

export PATH=/home/aaron/.codon/bin:$PATH

然后运行source .bashrc(一劳永逸)。


之后,你应该可以运行codon run code.py

相关内容