如何使用“原子”打开原子。在终端命令?

时间:2016-05-19 02:07:55

标签: windows cmd atom-editor

我想在命令提示符下使用atom .命令打开项目,但它显示atom is not recognized as an internal or external command

我该如何解决这个问题?

Screenshot

4 个答案:

答案 0 :(得分:4)

如果您使用的是Windows,那么您必须将原子路径添加到PATH环境变量中,对我来说这是:

C:\Users\<username>\AppData\Local\atom\bin

您可以通过打开运行对话框(win + r),键入&#34; SystemPropertiesAdvanced.exe&#34;来执行此操作。并点击enter。在这里你应该选择&#34;环境变量......&#34;并为您的用户编辑Path(因为原子可能只为您安装)。

答案 1 :(得分:1)

只需键入打开的终端**-在正确的目录中-**:

atom .

这就是所有人!

答案 2 :(得分:1)

导航到 C:\Users\<user>\AppData\Local\atom\app-x.xx.x\resources\cli,将其添加到您的路径中。打开 cmd,导航到所需的文件夹,现在运行 atom . 命令应该可以正常运行

答案 3 :(得分:0)

供以后参考:仅限 Windows 用户

<块引用>

转到 C:\Users\<username>,然后在查看选项卡中启用 Hidden items。 点击 AppData Local,然后点击 Atom。然后,点击 app-<version>

转到路径: enter image description here

<块引用>

在任务栏中搜索时输入 variable。然后点击Edit the system environment variableenter image description here

<块引用>

选择Path。然后点击EditNew,粘贴复制的路径enter image description here。然后最后点击所有 Ok 按钮。然后关闭cmd再打开。

atom --version

用原子打开一个项目

<块引用>

转到您的项目目录:使用 cmd 或 bash 键入 cd /<foldername>。然后输入,

atom .

谢谢。