1、正常安装应该是
pip install PyExecJS
2、安装出现问题
我在安装时出现如下问---安装pyexecjs出现问题:(pip安装第三方库出现问题)
Could not fetch URL https://pypi.python.org/simple/pip/: There was a problem confirming the ssl certificate: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:749) - skipping
3、解决方案
1.进入cmd 创建 pip文件夹 2.进入C:UsersAdministrator在该文件夹下创建pip.ini,写入一下内容: [global] index-url=http://mirrors.aliyun.com/pypi/simple/ [install] trusted-host=mirrors.aliyun.com 3.接下来配置环境变量 C:UsersAdministrator%HOMEPATH%pippip.ini 就可以愉快的使用pip了
4 、python 运行js代码出现问题
报错:execjs._exceptions.ProgramError: SyntaxError: 缺少标识符、字符串或数字
解决:
本地安装node.js(注:配环境变量)
>>> import execjs
>>> execjs.get().name
'Node.js (V8)'