Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for windows installation #7341 #8122

Merged
merged 3 commits into from
Jan 9, 2024

Commits on Jan 8, 2024

  1. Fix for windows installation tensorflow#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.
    0x5ca1ab1e committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    dadc140 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2024

  1. Configuration menu
    Copy the full SHA
    f18eedc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bb70edd View commit details
    Browse the repository at this point in the history