当下载和安装两个RUBY和PYTON3.11我不能完成它总是抛出一个错误

dzhpxtsq  于 2023-08-04  发布在  Ruby
关注(0)|答案(1)|浏览(81)

菜鸟在这里,我是非常文盲,当谈到这种工作,但我去深。
我一直在尝试下载和运行Ruby和Python,因为我现在正在做一个付费课程,我的生活中我无法完成它,我不知道为什么。也许我改变了什么,或者犯了一个错误,也许我只是没有受过教育。
当我尝试下载并通过终端运行RUBY时。我得到了这个:ruby 2.6.8p205(2021-07-07 revision 67951)[universal. arm 64 e-darwin 21]它不会显示我下载的新版本?
当我尝试运行Python时,在我的课程中,这些是步骤:

vim ~/.zshrc 

Vim is a text editor and allows you to make changes to files directly from the shell. To      make the edits:

1. Press the "I" key on your keyboard.
2.  Add the following line and remember to replace 3.x with the Python version that was installed on your system: 

shell PATH="/opt/homebrew/opt/python@3.x/libexec/bin:${PATH}" 

3. Press the esc key to exit from insert mode. 

4. Hold down the shift key and press the colon key represented by : & ; 

5. Type wq! and then hit Enter to exit vim.

字符串
1.运行以下操作:
我得到(我删除了我认为敏感的信息):

Last login: Fri Jul 14 16:12:38 on ttys00
/Users/-----/.zshrc:1: command not found: shell
@-MacBook-Pro ~ % ruby -v
ruby 2.6.8p205 (2021-07-07 revision 67951) [universal.arm64e-darwin21]
-MacBook-Pro ~ % vim ~/.zshrc 
-MacBook-Pro ~ %


请帮助,让我知道如果这是任何帮助。
上面都解释了。

o7jaxewo

o7jaxewo1#

从终端类型python3进入python解释器
要退出python解释器,按ctrl+c或ctrl+d如果你想运行python文件(扩展名为.py的文件),用cd命令转到文件路径并在终端中写入:

python3 file_name.py

字符串
或者,您可以通过指定文件的完整路径,从终端中的任何路径运行文件,如下所示:

python3 ~/Desktop/folder1/folder2/test.py


Ruby也是一样的。我不建议使用vim,但如果你想使用它,请使用以下命令。要创建或编辑文件,请在终端中使用以下命令:

vim file_name.rb


按键盘上的“I”键进入“插入模式”。编写代码,例如:

puts "hello world"


要退出并保存更改,请按Escape键,然后键入:wq并按Enter键。要运行文件,请在终端中写入以下命令,然后按回车键:

ruby file_name.rb

相关问题