Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Fix for windows installation #7341 Fix a problem with the installation on windows. My problem on windows was that `./lib/napi-v9` directory didn't exist and `./scripts/deps-stage.js` on line **60** needed the path to symlink or copy the dll. My fix was to make sure that the directory `napi-v9` exists with: `await fs.mkdir(path.dirname(destLibTensorFlowPath), {recursive: true})`; I'm solving the copy issue with this code. * Fix fs.mkdir usage in deps-stage.js
- Loading branch information