直接在命令行中录入 pip install pythonnet 会有一个ssl错误提示 ...Could not fetch URL https://pypi.python.org/simple/pythonnet/: There was a problem confirming the ssl... 只好下载后再安装,下载地址 https://pypi.org/simple/pythonnet/ 我的python是2.7的32位,于是下载了 pythonnet-2.3.0-cp27-cp27m
在同一台windows10电脑上调试过一个工程以后,切换了账号再次调试出现错误 DEP0700 : Registration of the app failed. Another user has already installed a packaged version of this app. An unpackaged version cannot replace this. The conflicting package is {{{PackageName}}} and it was pu
今天,打开VC6.0环境编了个小程序,谁知给我报了“cannot open Debug/1.exe for writing”这样一个错,然后,我就纳闷了,这是什么错丫? 想了半天,后想通,为什么会这样: 解释如下::当一个程序处于运行状态时,这个程序的exe文件是处于写保护的,不可写,因此用VC重新编译的时候会试图写入1.exe,这时就会出现上面的错误了. 所以,应该是在上次调试的时候,1.exe没有正常退出. 解决办法:可以通过任务管理器查看出此进程是否正在运行,如在运行就结束该进程,即可.