I'm getting this error in appcelerator studio:
openssl config failed: error:02001003:system library:fopen:No such process
I could not find anyone with the same problem so far.
I'm getting this error in appcelerator studio:
openssl config failed: error:02001003:system library:fopen:No such process
I could not find anyone with the same problem so far.
Tried a few suggestions from the npm repository issues:
OPENSSL_CONF
using commandset OPENSSL_CONF=
This works but after restarting the computer the error is back again.
OPENSSL_CONF
from Environment VariablesGo to the Windows Environment Variables and remove OPENSSL_CONF
from the System variables. Save it and restart the editor and it works like a charm.
It looks like a NPM error with OpenSSL according to this SO question: https://mcmap.net/q/1164897/-error-starting-nodejs-openssl-config-failed or the included GitHub link (https://github.com/npm/npm/issues/17261)
I had the same issue , you should install open ssl :
I fixed this issue with these steps, should try once:
In C disk, create OpenSSL/bin/openssl.cnf
In example config file here, you can copy and paste to openssl.cnf file
Now open command prompt in administrator mode. Now set system variable of openssl to OpenSSL/bin/openssl.cnf by this script: setx /m OPENSSL_CONF "C:\OpenSSL\bin\openssl.cnf"
It should show SUCCESS: Specified value was saved. in windows.
Now open "system environment variables" program -> Environment Variables
It should show this. Or you can edit the OPENSSL_CONF value to C:\OpenSSL\bin\openssl.cnf by manual
After all above steps, close all programs and try again with npm commands. It should have fixed. ;)
For Linux, run echo "$OPENSSL_CONF"
to see what you have that environment variable set to. If it is set to something, try unset OPENSSL_CONF
to unset it. You may have it set to something in your ~/.bashrc
file, ~/.profile
file, or ~/.bash_aliases
file which is causing it to get set again each time you reboot or open a new shell.
© 2022 - 2024 — McMap. All rights reserved.