15

我一直在学习 Python,并且经常遇到在线文档中的 $ 字符。通常它是这样的:

$ python ez_setup.py(是的,我一直在尝试安装设置工具)

我相当确定这个命令不适用于 python IDE 或控制台,但我已经尝试过 windows cmd 并且它不起作用。有什么帮助吗?

4

4 回答 4

20

截至目前,Python 并未$在其语法中实现。因此,它与 Python 无关。

相反,您看到的是基于 Unix 的系统(Mac、Linux 等)的终端提示符。

于 2013-11-14T19:14:33.957 回答
12

当您在 Windows 中打开命令提示符时,您会看到如下内容:

C:\Users\Michael0x2a\Blah> 

$符号在基于 Linux 的系统中是等效的。

每当您看到该$标志时,只需忽略它并输入该行的其余部分而无需修改。

于 2013-11-14T19:18:15.133 回答
5

$命令提示符。它用于表示python ez_setup.py应该在命令行上而不是在 python/perl/ruby shell 上运行

你可能也看到% python ez_setup.py了,这也意味着同样的事情

于 2013-11-14T19:14:19.863 回答
3

As the two previous answers told, $ is the beginning of commandline prompt waiting for your input in Unix/Linux -systems. In Windows the similar example notation would be like

C:\> python ez_setup.py

So you don't have to write the dollar sign. Just imagine the beginnings of Windows CMD or Powershell prompt in the beginning of line :)

You can read more discussion about the history of dollar sign from Superuser.

于 2013-11-14T19:20:01.897 回答