I can't install the package. This is the error log:
Installing [email protected] to /Users/fewu/.atom/packages ✗
> [email protected] install /private/var/folders/3n/pj00y93x0ylf6q_d8dsqz1vrfpt403/T/apm-install-dir-119714-86116-1yomdfx.kx88/node_modules/platformio-ide-terminal/node_modules/node-pty-prebuilt-multiarch
> prebuild-install || node scripts/install.js
prebuild-install WARN install No prebuilt binaries found (target=3.1.10 runtime=node arch=x64 libc= platform=darwin)
gyp ERR! configure error
gyp ERR! stack Error: Python executable "/Applications/Atom.app/Contents/Resources/app/apm/bin/python-interceptor.sh" is v3.7.1, which is not supported by gyp.
gyp ERR! stack You can pass the --python switch to point to Python >= v2.5.0 & < 3.0.0.
gyp ERR! stack at PythonFinder.failPythonVersion (/Applications/Atom.app/Contents/Resources/app/apm/node_modules/npm/node_modules/node-gyp/lib/configure.js:501:19)
gyp ERR! stack at PythonFinder.<anonymous> (/Applications/Atom.app/Contents/Resources/app/apm/node_modules/npm/node_modules/node-gyp/lib/configure.js:483:14)
gyp ERR! stack at ChildProcess.exithandler (child_process.js:282:7)
gyp ERR! stack at ChildProcess.emit (events.js:182:13)
gyp ERR! stack at maybeClose (internal/child_process.js:961:16)
gyp ERR! stack at Socket.stream.socket.on (internal/child_process.js:380:11)
gyp ERR! stack at Socket.emit (events.js:182:13)
gyp ERR! stack at Pipe._handle.close [as _onclose] (net.js:596:12)
gyp ERR! System Darwin 16.7.0
gyp ERR! command "/Applications/Atom.app/Contents/Resources/app/apm/bin/node" "/Applications/Atom.app/Contents/Resources/app/apm/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /private/var/folders/3n/pj00y93x0ylf6q_d8dsqz1vrfpt403/T/apm-install-dir-119714-86116-1yomdfx.kx88/node_modules/platformio-ide-terminal/node_modules/node-pty-prebuilt-multiarch
gyp ERR! node -v v10.2.1
gyp ERR! node-gyp -v v3.7.0
gyp ERR! not ok
npm WARN enoent ENOENT: no such file or directory, open '/private/var/folders/3n/pj00y93x0ylf6q_d8dsqz1vrfpt403/T/apm-install-dir-119714-86116-1yomdfx.kx88/package.json'
npm WARN apm-install-dir-119714-86116-1yomdfx.kx88 No description
npm WARN apm-install-dir-119714-86116-1yomdfx.kx88 No repository field.
npm WARN apm-install-dir-119714-86116-1yomdfx.kx88 No README data
npm WARN apm-install-dir-119714-86116-1yomdfx.kx88 No license field.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] install: `prebuild-install || node scripts/install.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above
Expected behavior:
Install with no error
Actual behavior:
Install with error
Reproduces how often:
100%
> atom --version
Atom : 1.40.0
Electron: 3.1.10
Chrome : 66.0.3359.181
Node : 10.2.0
> apm --version
apm 2.4.2
npm 6.2.0
node 10.2.1 x64
atom 1.40.0
python 3.7.1
git 2.14.3
OS name and version: macOS Sierra 10.12.6
Platformio-ide-terminal version:2.9.4
@YangFei1990 thansk for opening the issue.
I will investigate, but Ive tested this locally and it works with Atom 1.39.1 which is same electron version.
Thanks @the-j0k3r , please let me know once there is any update. This package is my favorite one on atom and I can't live without it.
The only update I have is not good news for you.
Proof.

macOS 10.14.2
Also for those on Windows its bad news if you have me too reports.

So theres nothing to fix here.
@the-j0k3r I will try to reinstall atom.
Update: I delete the .atom folder and re-downloaded atom. But I still received the same error. @the-j0k3r can you check my error message and the versions?
Hi I am on windows and cannot install this package. What can I do now? Thank you
I saw this line from your error report:
gyp ERR! stack Error: Python executable "/Applications/Atom.app/Contents/Resources/app/apm/bin/python-interceptor.sh" is v3.7.1, which is not supported by gyp.
What is the output when you run python --version in the terminal (without virtual environments)?
@fanninpm It is Python 3.7.1.
It is Python 3.7.1.
It seems to me that you don't have the default Python installation currently active on your Mac. How did you install that version of Python?
@fanninpm I'm not sure. I have the Python installed when I got this Mac. Why do you say "you don't have the default Python installation currently active on your Mac"? I can use pip or other Python packages.
Mac OS X usually comes with Python 2.7 pre-installed by Apple. I think you might have downloaded Python 3 from the official Python website (not necessarily a bad thing).
What is the output of the command which python?
@fanninpm The output is /anaconda3/bin/python
@YangFei1990 The problem with Anaconda is that it doesn't play nice and tends to override the system python. What is your $PATH? (usually obtained via echo $PATH)
@fanninpm The PATH contains
/Users/fewu/google-cloud-sdk/bin:/anaconda3/bin:/anaconda3/condabin:/Library/Frameworks/Python.framework/Versions/3.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Library/TeX/texbin
I was also thinking if the python version was the problem, since node-gyp seems not support Python 3.x
I forgot to ask you what your shell is. (echo $SHELL) Most people have the default bash, which is what I'll assume you have. (Some people like working in other shells such as fish or zsh.)
I think your new path should exclude either the /anaconda3/bin portion or the /Library/Frameworks/Python.framework/Versions/3.7/bin portion (judging from what I currently have in my own $PATH). So let's first try…
export $PATH /Users/fewu/google-cloud-sdk/bin:/anaconda3/condabin:/Library/Frameworks/Python.framework/Versions/3.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Library/TeX/texbin
and see if that works. (This removes the /anaconda3/bin from the $PATH). To check this, run python --version and which python again.
@YangFei1990 Your error doesnt make sense, simply because THERE are binaries for electron 3.x with platformio-ide-terminal 2.9.4 for all supported OS's it works, Ive tested. and provided proof.
If it doesnt work for you then its something local to you guys, 3rd party something or your specific setup that interfering with Atom or platformio-ide-terminal.
@blin106 and everyone else see https://github.com/platformio/platformio-atom-ide-terminal/issues/770#issuecomment-521368518 It works.
Also your python paths, not that it matters because binaries exist, export your paths to ~/.bash_profile.
See this about python paths https://github.com/platformio/platformio-atom-ide-terminal/issues/703#issuecomment-504878005
Also Atom in mac install to some weird directories, you need to delete them all.
@nurabdullah94 Thats a very odd statement considering that Atom 1.39.1 and Atom 1.40.0 have the exact same version of electron.
Not only that, Ive tested both Atom versions + [email protected] and they work. fine. See https://github.com/platformio/platformio-atom-ide-terminal/issues/770#issuecomment-521368518
As a workaround, Nightly Atom 1.42.0-dev has electron 4.x which I have confirmation that it works So you guys can test.
Note: however Windows with Atom 1.42.0-dev nightly is currently broken.
I tried reinstalling atom and then downloading the package but I still get an error.
Sorry I am new to atom and I'm taking a course that requires using atom and this package. Thank you!
@blin106 see https://github.com/platformio/platformio-atom-ide-terminal/issues/770#issuecomment-521368518 top is macOS bottom is Windows.
@the-j0k3r Do you have Anaconda installed? I know this seems counterintuitive, but Anaconda assumes that you/the system would prefer to run its Python interpreter, rather than the one that comes preinstalled with the system. I forget exactly what steps I took when I installed Anaconda to make sure that the python command points to the system's preinstalled interpreter rather than Anaconda's. I guess Anaconda is weird like that.
Update: I commented all lines in ~/.bash_profile that are related to Anaconda and Python 3.7. Then I can install without any error. Thank you so much @fanninpm ! I will leave this issue open in case there are more questions for the windows side. You can also feel free to close it since my problem has been solved.
The installation is still failing.
OS - windows 10
atom --version
Atom : 1.40.0
Electron: 3.1.10
Chrome : 66.0.3359.181
Node : 10.2.0
Python 3.7.4 path
/c/Users/whoami/AppData/Local/Programs/Python/Python37/Scripts:/c/Users/whoami/AppData/Local/Programs/Python/Python37:
INSTALL ERROR log
Installing “[email protected]” failed.Hide output…
> [email protected] install C:\Users\whoami\AppData\Local\Temp\apm-install-dir-119716-9008-sexekw.wd1hd\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch
> prebuild-install || node scripts/install.js
C:\Users\whoami\AppData\Local\Temp\apm-install-dir-119716-9008-sexekw.wd1hd\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch>if not defined npm_config_node_gyp (node "C:\Users\whoami\AppData\Local\atom\app-1.40.0\resources\app\apm\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild ) else (node "C:\Users\whoami\AppData\Local\atom\app-1.40.0\resources\app\apm\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js" rebuild )
prebuild-install WARN install No prebuilt binaries found (target=3.1.10 runtime=node arch=x64 libc= platform=win32)
gyp ERR! configure error
gyp ERR! stack Error: Can't find Python executable "C:\Users\whoami\AppData\Local\Programs\Python\Python37\python.EXE", you can set the PYTHON env variable.
gyp ERR! stack at PythonFinder.failNoPython (C:\Users\whoami\AppData\Local\atom\app-1.40.0\resources\app\apm\node_modules\npm\node_modules\node-gyp\lib\configure.js:492:19)
gyp ERR! stack at PythonFinder.<anonymous> (C:\Users\whoami\AppData\Local\atom\app-1.40.0\resources\app\apm\node_modules\npm\node_modules\node-gyp\lib\configure.js:517:16)
gyp ERR! stack at C:\Users\whoami\AppData\Local\atom\app-1.40.0\resources\app\apm\node_modules\npm\node_modules\graceful-fs\polyfills.js:284:29
gyp ERR! stack at FSReqWrap.oncomplete (fs.js:182:21)
gyp ERR! System Windows_NT 10.0.16299
gyp ERR! command "C:\\Users\\whoami\\AppData\\Local\\atom\\app-1.40.0\\resources\\app\\apm\\bin\\node.exe" "C:\\Users\\whoami\\AppData\\Local\\atom\\app-1.40.0\\resources\\app\\apm\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild"
gyp ERR! cwd C:\Users\whoami\AppData\Local\Temp\apm-install-dir-119716-9008-sexekw.wd1hd\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch
gyp ERR! node -v v10.2.1
gyp ERR! node-gyp -v v3.7.0
gyp ERR! not ok
npm WARN enoent ENOENT: no such file or directory, open 'C:\Users\whoami\AppData\Local\Temp\apm-install-dir-119716-9008-sexekw.wd1hd\package.json'
npm WARN apm-install-dir-119716-9008-sexekw.wd1hd No description
npm WARN apm-install-dir-119716-9008-sexekw.wd1hd No repository field.
npm WARN apm-install-dir-119716-9008-sexekw.wd1hd No README data
npm WARN apm-install-dir-119716-9008-sexekw.wd1hd No license field.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] install: `prebuild-install || node scripts/install.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\whoami\.atom\.apm\_logs\2019-08-16T07_23_44_518Z-debug.log
These reports make no sense, why it works for me and not everyone else here is a mystery to be solved, Im open to sensible suggestions.. Nonetheless here are some workarounds you guys may want to try,
Node.js version is 10.16.0, install that. I use chocolatey package manager for Windows.
.atom\packagesnpm install --global --production windows-build-tools (it took about 10 minutes to complete)apm i [email protected]extract from https://github.com/platformio/platformio-atom-ide-terminal/issues/707#issuecomment-514634895
Use the following steps:
Install python 2.7.15 x64 if you dont have it already.
Edit /Applications/Atom.app/Contents/Resources/app/apm/bin/python-interceptor.sh
Change line 37 from exec python "${ARGS[@]}" to exec python2 "${ARGS[@]}" and line 40 from exec python "$@" to exec python2 "$@"
apm install platformio-ide-terminal should now succeed
When I opened Atom, I had to rebuild the package
You might want to reverse the edits in python-interceptor.sh
Hope this helps someone
extract from https://github.com/platformio/platformio-atom-ide-terminal/issues/707#issuecomment-517001497
Copy and paste the template located at https://raw.githubusercontent.com/platformio/platformio-atom-ide-terminal/master/.github/ISSUE_TEMPLATE.md and fill in all fields. Logs / Errors / other information should be added at the bottom in the Notes portion of the issue template.
Reply with that information on this thread, Do NOT open a new issue.
Thanks.
@YangFei1990
have you tried installing python 2.7.15?
re:
gyp ERR! stack Error: Python executable "/Applications/Atom.app/Contents/Resources/app/apm/bin/python-interceptor.sh" is v3.7.1, which is not supported by gyp.
I have completely uninstalled and reinstalled atom, and purged all platform-io named files from
'''
C:\Users\XXXX.atom\packages
'''
apm i platformio-ide-terminal
Expected behavior:
Install works
Actual behavior:
error:
build logs
Installing [email protected] to C:\Users\XXXX\.atom\packages failed
> [email protected] install C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch
> prebuild-install || node scripts/install.js
C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch>if not defined npm_config_node_gyp (node "C:\Users\XXXX\AppData\Local\atom\app-1.40.0\resources\app\apm\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild ) else (node "C:\Users\XXXX\AppData\Local\atom\app-1.40.0\resources\app\apm\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js" rebuild )
Building the projects in this solution one at a time. To enable parallel build, please add the "/m" switch.
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\Microsoft.CppBuild.targets(400,5): warning MSB8029: The Intermediate directory or Output directory cannot reside under the Temporary directory as it could lead to issues with incremental build. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\conpty.vcxproj]
conpty.cc
path_util.cc
win_delay_load_hook.cc
..\src\win\conpty.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\conpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\src\win\path_util.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\conpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
C:\Users\XXXX\AppData\Local\atom\app-1.40.0\resources\app\apm\node_modules\npm\node_modules\node-gyp\src\win_delay_load_hook.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\conpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\Microsoft.CppBuild.targets(400,5): warning MSB8029: The Intermediate directory or Output directory cannot reside under the Temporary directory as it could lead to issues with incremental build. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\conpty_console_list.vcxproj]
conpty_console_list.cc
win_delay_load_hook.cc
..\src\win\conpty_console_list.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\conpty_console_list.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
C:\Users\XXXX\AppData\Local\atom\app-1.40.0\resources\app\apm\node_modules\npm\node_modules\node-gyp\src\win_delay_load_hook.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\conpty_console_list.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\Microsoft.CppBuild.targets(400,5): warning MSB8029: The Intermediate directory or Output directory cannot reside under the Temporary directory as it could lead to issues with incremental build. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty.vcxproj]
AgentLocation.cc
winpty.cc
..\..\..\..\deps\winpty\src\libwinpty\AgentLocation.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\libwinpty\winpty.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
BackgroundDesktop.cc
Buffer.cc
DebugClient.cc
GenRandom.cc
OwnedHandle.cc
StringUtil.cc
WindowsSecurity.cc
..\..\..\..\deps\winpty\src\shared\DebugClient.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\shared\BackgroundDesktop.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
WindowsVersion.cc
..\..\..\..\deps\winpty\src\shared\GenRandom.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
WinptyAssert.cc
..\..\..\..\deps\winpty\src\shared\Buffer.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\shared\WindowsSecurity.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\shared\OwnedHandle.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\shared\StringUtil.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
WinptyException.cc
WinptyVersion.cc
win_delay_load_hook.cc
..\..\..\..\deps\winpty\src\shared\WinptyAssert.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\shared\WindowsVersion.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\shared\WinptyException.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\shared\WinptyVersion.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
C:\Users\XXXX\AppData\Local\atom\app-1.40.0\resources\app\apm\node_modules\npm\node_modules\node-gyp\src\win_delay_load_hook.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\Microsoft.CppBuild.targets(400,5): warning MSB8029: The Intermediate directory or Output directory cannot reside under the Temporary directory as it could lead to issues with incremental build. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
Agent.cc
AgentCreateDesktop.cc
ConsoleFont.cc
ConsoleInput.cc
..\..\..\..\deps\winpty\src\agent\Agent.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\agent\ConsoleFont.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\agent\ConsoleInput.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
ConsoleInputReencoding.cc
ConsoleLine.cc
..\..\..\..\deps\winpty\src\agent\AgentCreateDesktop.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
DebugShowInput.cc
..\..\..\..\deps\winpty\src\agent\ConsoleInputReencoding.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\agent\ConsoleLine.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\agent\DebugShowInput.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
DefaultInputMap.cc
EventLoop.cc
..\..\..\..\deps\winpty\src\agent\DefaultInputMap.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
InputMap.cc
LargeConsoleRead.cc
NamedPipe.cc
..\..\..\..\deps\winpty\src\agent\EventLoop.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
Scraper.cc
..\..\..\..\deps\winpty\src\agent\LargeConsoleRead.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\agent\InputMap.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\agent\NamedPipe.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
Terminal.cc
Win32Console.cc
Win32ConsoleBuffer.cc
main.cc
..\..\..\..\deps\winpty\src\agent\main.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\agent\Win32ConsoleBuffer.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\agent\Win32Console.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
BackgroundDesktop.cc
..\..\..\..\deps\winpty\src\agent\Scraper.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\agent\Terminal.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
Buffer.cc
DebugClient.cc
GenRandom.cc
OwnedHandle.cc
StringUtil.cc
WindowsSecurity.cc
..\..\..\..\deps\winpty\src\shared\BackgroundDesktop.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\shared\Buffer.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\shared\StringUtil.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
WindowsVersion.cc
..\..\..\..\deps\winpty\src\shared\DebugClient.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
WinptyAssert.cc
WinptyException.cc
..\..\..\..\deps\winpty\src\shared\GenRandom.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
WinptyVersion.cc
..\..\..\..\deps\winpty\src\shared\WindowsSecurity.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\shared\OwnedHandle.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
win_delay_load_hook.cc
..\..\..\..\deps\winpty\src\shared\WinptyException.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\shared\WinptyVersion.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
C:\Users\XXXX\AppData\Local\atom\app-1.40.0\resources\app\apm\node_modules\npm\node_modules\node-gyp\src\win_delay_load_hook.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\shared\WinptyAssert.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
..\..\..\..\deps\winpty\src\shared\WindowsVersion.cc : fatal error C1001: An internal error has occurred in the compiler. [C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch\build\deps\winpty\src\winpty-agent.vcxproj]
(compiler file 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c', line 2763)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
prebuild-install WARN install No prebuilt binaries found (target=3.1.10 runtime=node arch=x64 libc= platform=win32)
gyp ERR! build error
gyp ERR! stack Error: `C:\Program Files (x86)\MSBuild\14.0\bin\msbuild.exe` failed with exit code: 1
gyp ERR! stack at ChildProcess.onExit (C:\Users\XXXX\AppData\Local\atom\app-1.40.0\resources\app\apm\node_modules\npm\node_modules\node-gyp\lib\build.js:262:23)
gyp ERR! stack at ChildProcess.emit (events.js:182:13)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:237:12)
gyp ERR! System Windows_NT 10.0.17763
gyp ERR! command "C:\\Users\\XXXX\\AppData\\Local\\atom\\app-1.40.0\\resources\\app\\apm\\bin\\node.exe" "C:\\Users\\XXXX\\AppData\\Local\\atom\\app-1.40.0\\resources\\app\\apm\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild"
gyp ERR! cwd C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\node_modules\platformio-ide-terminal\node_modules\node-pty-prebuilt-multiarch
gyp ERR! node -v v10.2.1
gyp ERR! node-gyp -v v3.7.0
gyp ERR! not ok
npm WARN enoent ENOENT: no such file or directory, open 'C:\Users\XXXX\AppData\Local\Temp\apm-install-dir-119717-52056-19xecdi.c63vl\package.json'
npm WARN apm-install-dir-119717-52056-19xecdi.c63vl No description
npm WARN apm-install-dir-119717-52056-19xecdi.c63vl No repository field.
npm WARN apm-install-dir-119717-52056-19xecdi.c63vl No README data
npm WARN apm-install-dir-119717-52056-19xecdi.c63vl No license field.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] install: `prebuild-install || node scripts/install.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\XXXX\.atom\.apm\_logs\2019-08-17T09_42_33_860Z-debug.log
Reproduces how often:
100% Trying through GUI locks up the Atom GUI with no information.
Tried information the-J0k3r mentioned https://github.com/platformio/platformio-atom-ide-terminal/issues/770#issuecomment-521934410
> atom --version
Atom : 1.40.0
Electron: 3.1.10
Chrome : 66.0.3359.181
Node : 10.2.0
> apm --version
apm 2.4.2
npm 6.2.0
node 10.2.1 x64
atom 1.40.0
python 2.7.16
git 2.16.2.windows.1
visual studio 2015
md5-92890f384759cb38e95f7ad2798e7c17
>python --version
Python 3.7.2
2.7.15 was installed aswell
Also windows 10 64 with 64 bit installs when available.
try downgrading atom to 1.39.1, installing [email protected] then confirming terminal works.
then let Atom upgrade to 1.40.0 it should work as well cause electron version hasnt changed.
If you have antivirus (macaffee, other 3rd party/ windows defender etc.)disable it when installing or compiling atom or platformio-ide-terminal. In the past macAffe has broken the terminal so ppl had to whitelist the relevant directories in their macafee settings.
This error affects a number of packages and is related to an apm change:
https://github.com/atom/atom/issues/19780
This error affects a number of packages and is related to an apm change:
atom/atom#19780
@BenRussert Thanks for that information, it seems indeed the issue users are reporting.
Its strange that that issue doesn't affect me and seemingly does all others. :/
Realistically speaking then, users should downgrade to Atom 1.39.1.
Thanks again for heads up.
Can confirm downloading https://github.com/atom/atom/releases/tag/v1.39.1 solved the issue.
Same error here
I had another issue (although I do recall python problems earlier) on Windows 10 with Atom 1.40 and 2.9.4 terminal. It was complaining that I did not have v140 toolchain although I do have VS 2017 Community installed with v140 component. It looked like it used incorrect MSBuild (v12 instead of v15). I had to open x64 Native Tools Command Prompt for VS 2017 and run apm install platformio-ide-terminal in there.

Same issue here. Tried:
apm install platformio-ide-terminal
to no avail. Error report here:
platformio.error.txt
SO the erro has been solved?
SO the erro has been solved?
Same issue here. Tried:
@jpryne @upluke @
In the nightly Atom yes. Read this https://github.com/platformio/platformio-atom-ide-terminal/issues/770#issuecomment-522253026
Atom 1.40.1 has been released to fix the issue. Please upgrade your Atom installations and report back.
Thanks.
Updated from 1.39.1 to 1.40.1 fine
uninstalled platformio-ide-terminal & reinstalled fine as well.
Closing this as issue has been fixed upstream.
I had this error with Atom 1.41.0 and Python3 on MacOS. I implemented the fix by @the-j0k3r, replacing python2 with python3 and it worked.
Edit /Applications/Atom.app/Contents/Resources/app/apm/bin/python-interceptor.sh
Change line 37 from exec python "${ARGS[@]}" to exec python3 "${ARGS[@]}"and line 40 from exec python "$@" to exec python3 "$@"
apm install platformio-ide-terminalshould now succeed
When I opened Atom, I had to rebuild the package
Please try https://github.com/bus-stop/terminus
Fork of platformio-atom-ide-terminal
https://github.com/platformio/platformio-atom-ide-terminal/issues/872#issuecomment-658743370
Most helpful comment
Can confirm downloading https://github.com/atom/atom/releases/tag/v1.39.1 solved the issue.