无法运行 AutoCAD.原因可能如下: 1)此版本的AutoCAD安装不正确。在此情况下,您需要重新安装

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无法运行 AutoCAD.原因可能如下: 1)此版本的AutoCAD安装不正确。在此情况下,您需要重新安装相关的知识,希望对你有一定的参考价值。

我想学习室内设计,想学习AutoCAD2010。但是安装AutoCAD2010之后,双击快捷图标,出现上述错误提示。有哪位好心人帮帮我。
所属版本:AutoCAD2010。
网上试了很多方法都解决不了。请哪位好心人说得越详细越好。谢谢你们了。

1.手动启动Windows Presentation Foundation Font Cache
3.0.0.0服务(CAD与此有关);
2.手动启动Windows
Installer服务(第三步用);
3.进控制面板,找到“程序”-“打开或关闭Windows功能”,出现“请稍等...”(如果跳过第二步的话,这里会显示空白);
4.找到Microsoft.NET
Framework
3.5.1,前面有个复选框,勾上,点“+”展开,里面的两个单项不用选,确定。
5.再次运行CAD,完全正常。这是我碰到的问题,试试看,不知道能不能帮到你。
参考技术A 说多了都是废话,很简单,在控制面板卸载程序列表中,找到对应CAD版本的.Net3.5或其它版本的安装程序,点击卸载-选择修复即可。一定要耐心等待提示修复成功。 参考技术B 缺少相关的组件,具体有:microsoft.net framework 3.5 microsoft visual C++2008 microsoft Visual C++ 2005 dix 9.0.
另外要注意你的电脑是64位的还是32位的,下载对应的CAD版本。
望采纳
参考技术C 百度搜索Microsoft .NET Framework 3.0,下载到电脑
安装的时候注意点别什么都装,就只装这个3.0
装好后,重新打开即可

Node Js 代码无法在 Windows 10 上构建,但可以在 MacOS 上运行。可能是啥原因?

【中文标题】Node Js 代码无法在 Windows 10 上构建,但可以在 MacOS 上运行。可能是啥原因?【英文标题】:Nodejs code fails to build on Windows10 but works on MacOS. What might be the cause?Node Js 代码无法在 Windows 10 上构建,但可以在 MacOS 上运行。可能是什么原因? 【发布时间】:2019-05-26 15:09:08 【问题描述】:

我正在尝试在 Windows10 上构建和部署来自 https://github.com/Autodesk-Forge/forge-rcdb.nodejs 的代码

在 MacOS 上,我在开发环境中成功构建了它,现在我正在尝试在 Windows 上实现它。我按照相同的步骤,在 Windows 上使用:

 $env:NODE_ENV = "developement"
 $env:HOT_RELOADING="true"
 npm start

但我的 Powershell 显示:

> forge-rcdb@4.0.0 start D:\Documents\forge-rcdb.nodejs

> node bin/start.js

internal/modules/cjs/loader.js:583

    throw err;

    ^

Error: Cannot find module '../../config/developement.config.js'
    at Function.Module._resolveFilename (internal/modules/cjs/loader.js:581:15)
    at Function.Module._load (internal/modules/cjs/loader.js:507:25)
    at Module.require (internal/modules/cjs/loader.js:637:17)
    at require (internal/modules/cjs/helpers.js:22:18)
    at Object.<anonymous> (D:\Documents\forge-rcdb.nodejs\node_modules\c0nfig\index.js:10:14)
    at Module._compile (internal/modules/cjs/loader.js:689:30)
    at Module._extensions..js (internal/modules/cjs/loader.js:700:10)
    at Object.require.extensions.(anonymous function) [as .js] (D:\Documents\forge-rcdb.nodejs\node_modules\babel-register\lib\node.js:152:7)
    at Module.load (internal/modules/cjs/loader.js:599:32)
    at tryModuleLoad (internal/modules/cjs/loader.js:538:12)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! forge-rcdb@4.0.0 start: `node bin/start.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the forge-rcdb@4.0.0 start 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\yangdihan\AppData\Roaming\npm-cache\_logs\2018-12-28T21_12_28_942Z-debug.log
PS D:\Documents\forge-rcdb.nodejs> npm install cairo
npm ERR! code E404
npm ERR! 404 Not Found: cairo@latest

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\yangdihan\AppData\Roaming\npm-cache\_logs\2018-12-28T21_20_30_522Z-debug.log

这可能是因为 Windows 有反斜杠而不是路径的斜杠吗?

【问题讨论】:

你有没有在 Mac 上运行npm install,然后尝试在 Windows 下使用同一个目录?如果是这样,请删除 node_modules 并再次运行 npm install,其中可能存在为 Mac 而不是 Windows 构建的本机模块。 另外,“开发”似乎拼错了。 是的,我确实在 Windows 上运行了 npm install。有几个警告但没有错误 请在此处查看我的说明,它可能会有所帮助:***.com/a/50284712/7745569 【参考方案1】:

看起来development 有错字(developement) 并导致了错误:

Error: Cannot find module '../../config/developement.config.js'

将您的环境设置为config文件夹中的相应配置文件,否则c0nfig库将无法找到配置:

config -
       |--- development.config.js
       |--- production.config.js

【讨论】:

【参考方案2】:

我最终解决了。 解决方法是安装Python2.7、C++编译器、c#编译器。只需使用 Visual Studio 安装程序安装它们就可以了。 然后很可能需要按照以下说明修复 npm canvas/cairo:https://github.com/benjamind/delarre.docpad/blob/master/src/documents/posts/installing-node-canvas-for-windows.html.md

然后一切正常

【讨论】:

以上是关于无法运行 AutoCAD.原因可能如下: 1)此版本的AutoCAD安装不正确。在此情况下,您需要重新安装的主要内容,如果未能解决你的问题,请参考以下文章

cad安装出现问题, autoCAD无法继续。

Win10安装CAD失败,提示某些产品无法安装

天正总出现致命错误?是怎么回事儿?

“无法启动服务,原因可能是已被禁用或与其相关联的设备没有启动”怎么办?

使用NSIS获取AutoCAD的安装路径

VMware出现配置文件 .vmx 是由VMware产品创建,但该产品与此版 VMware workstation 不兼容,因此无法使用--VMware版本不兼容问题