由于核素的原因,原子不能启动终端



我正试图将atom编辑器设置为linux上python开发的ide,并且我已经安装了以下软件包:

Community Packages (14) [home path]/.atom/packages
├── Hydrogen@2.14.1
├── atom-file-icons@0.7.1
├── atom-ide-ui@0.13.0
├── atom-material-syntax-light@0.4.6
├── autocomplete-python@1.16.0
├── busy-signal@2.0.1
├── hydrogen-python@0.0.8
├── ide-python@1.5.0
├── intentions@1.1.5
├── linter@2.3.1 (disabled)
├── linter-flake8@2.4.0
├── linter-ui-default@1.8.1
├── minimap@4.29.9
└── python-autopep8@0.1.3

当我尝试从"查看-->终端-->启动新终端"启动终端时,我会得到以下错误:

For more info check out the docs: https://nuclide.io/docs/features/terminal
Error starting process:
Error: Cannot find module '[home path]/.atom/packages/atom-ide-ui/node_modules/nuclide-prebuilt-libs/pty/build/pty-node-v69-linux-x64/pty.node'

我已经搜索了错误,我认为是版本不匹配。

经过大量搜索,一无所获,我试图创建该文件夹,并从"pty-node-v57-linux-x64"复制"pty.node",但终端无论如何都失败了,并返回错误:

For more info check out the docs: https://nuclide.io/docs/features/terminal
Error starting process:
Error: The module '[home path]/.atom/packages/atom-ide-ui/node_modules/nuclide-prebuilt-libs/pty/build/pty-node-v69-linux-x64/pty.node'
was compiled against a different Node.js version using
NODE_MODULE_VERSION 57. This version of Node.js requires
NODE_MODULE_VERSION 69. Please try re-compiling or re-installing
the module (for instance, using `npm rebuild` or `npm install`).

所以我搜索并尝试了一些随机的东西,比如:

$ cd [home path].atom/packages/atom-ide-ui/node_modules/nuclide-prebuilt-libs/pty/build
$ node -p process.versions.modules
57
$ npm install
npm ERR! Linux 5.3.0-40-generic
npm ERR! argv "/usr/bin/node" "/usr/bin/npm" "install"
npm ERR! node v8.10.0
npm ERR! npm  v3.5.2
npm ERR! code ELIFECYCLE
npm ERR! pty@0.0.0 prepublish: `npm run tsc && cp src/index.js.flow lib/`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the pty@0.0.0 prepublish script 'npm run tsc && cp src/index.js.flow lib/'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the pty package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     npm run tsc && cp src/index.js.flow lib/
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs pty
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls pty
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR!     [home path].atom/packages/atom-ide-ui/node_modules/nuclide-prebuilt-libs/pty/build/npm-debug.log

以及其他无用的东西。

我对npm完全陌生,所以我不知道如何正确地解释这些输出。

有解决这个问题的办法吗?或者有什么替代包可以将atom设置为python-ide?

我也遇到了同样的问题。这是我的环境:

❯ apm -v                  
apm  2.5.2
npm  6.14.8
node 12.4.0 x64
atom 1.54.0
python 
git 2.27.0

因此,我转到~/.atom/packages/atom-ide-ui并查看了package.json文件,注意到atom-ide-ui正在使用nuclide-prebuilt-libs@0.5.2。因此,我安装了nuclide-prebuilt-libs的最新版本,在撰写本文时,它是0.6.3:

❯ npm install nuclide-prebuilt-libs@0.6.3

之后,打开终端(ctrl+shift+t(就像一个符咒。

最新更新