Installation tfjs-node@3.21.0 doesn't make `dist` folder
See original GitHub issueSystem information
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Ubuntu 20.04.1 WSL; also Windows 10 itself.
- Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: none
- TensorFlow.js installed from (npm or script link): npm
- TensorFlow.js version: @tensorflow/tfjs-node@3.21.0
- CUDA/cuDNN version: none
Describe the problem
Installation doesn’t make dist
folder (without any error messages).
Downgrading to @tensorflow/tfjs-node@3.20.0
is making dist
folder correctly in the same environment.
Provide the exact sequence of commands / steps that you executed before running into the problem
mkdir test_bug-3-21-0 && cd test_bug-3-21-0
npm install --save @tensorflow/tfjs-node@3.21.0
stat ./node_modules/@tensorflow/tfjs-node/dist
Expected result: bash: ./node_modules/@tensorflow/tfjs-node/dist: No such file or directory
Any other info / logs
Log example without any problems:
$ npm rebuild @tensorflow/tfjs-node --verbose
npm verb cli /home/tauraloke/.nvm/versions/node/v16.16.0/bin/node /home/tauraloke/.nvm/versions/node/v16.16.0/bin/npm
npm info using npm@8.19.2
npm info using node@v16.16.0
npm timing npm:load:whichnode Completed in 0ms
npm timing config:load:defaults Completed in 1ms
npm timing config:load:file:/home/tauraloke/.nvm/versions/node/v16.16.0/lib/node_modules/npm/npmrc Completed in 1ms
npm timing config:load:builtin Completed in 1ms
npm timing config:load:cli Completed in 1ms
npm timing config:load:env Completed in 1ms
npm timing config:load:file:/home/tauraloke/projects/image_catalogizer/tensorflow-js-21/.npmrc Completed in 0ms
npm timing config:load:project Completed in 3ms
npm timing config:load:file:/home/tauraloke/.npmrc Completed in 0ms
npm timing config:load:user Completed in 0ms
npm timing config:load:file:/home/tauraloke/.nvm/versions/node/v16.16.0/etc/npmrc Completed in 0ms
npm timing config:load:global Completed in 1ms
npm timing config:load:validate Completed in 0ms
npm timing config:load:credentials Completed in 0ms
npm timing config:load:setEnvs Completed in 1ms
npm timing config:load Completed in 9ms
npm timing npm:load:configload Completed in 9ms
npm timing npm:load:mkdirpcache Completed in 2ms
npm timing npm:load:mkdirplogs Completed in 0ms
npm verb title npm rebuild @tensorflow/tfjs-node
npm verb argv "rebuild" "@tensorflow/tfjs-node" "--loglevel" "verbose"
npm timing npm:load:setTitle Completed in 1ms
npm timing config:load:flatten Completed in 2ms
npm timing npm:load:display Completed in 7ms
npm verb logfile logs-max:10 dir:/home/tauraloke/.npm/_logs
npm verb logfile /home/tauraloke/.npm/_logs/2022-10-06T06_50_44_061Z-debug-0.log
npm timing npm:load:logFile Completed in 4ms
npm timing npm:load:timers Completed in 0ms
npm timing npm:load:configScope Completed in 0ms
npm timing npm:load Completed in 25ms
npm timing arborist:ctor Completed in 0ms
npm timing arborist:ctor Completed in 0ms
npm timing build:queue Completed in 1ms
npm info run @tensorflow/tfjs-node@3.20.0 install node_modules/@tensorflow/tfjs-node node scripts/install.js
npm info run @tensorflow/tfjs-node@3.20.0 install { code: 0, signal: null }
npm timing build:run:install:node_modules/@tensorflow/tfjs-node Completed in 166ms
npm timing build:run:install Completed in 166ms
npm timing build:deps Completed in 169ms
npm timing build Completed in 170ms
rebuilt dependencies successfully
npm timing command:rebuild Completed in 251ms
npm verb exit 0
npm timing npm Completed in 319ms
npm info ok
Issue Analytics
- State:
- Created a year ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
@tensorflow/tfjs-node - npm
This package will work on Linux, Windows, and Mac platforms where TensorFlow is supported. Installing. TensorFlow.js for Node currently supports ...
Read more >npm install doesnt create dist folder - Stack Overflow
It will create the node_modules directory in your current directory (if one doesn't exist yet), and will download the package to that directory....
Read more >Setup | TensorFlow.js
There are two main ways to get TensorFlow.js in your browser based projects: Using script tags. Installation from NPM and using a build...
Read more >Netlify Build exceeded maximum allowed runtime - Support
Hello Netlify Community, Netlify newbie here :raised_hand: My netlify build fails without providing an informative error.
Read more >Netlify Deployment fails - Show & Tell - RedwoodJS Community
[build] command = "yarn rw deploy netlify" publish = "web/dist" ... @tensorflow/tfjs@npm:3.21.0 doesn't provide seedrandom (p563bf), ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Sorry about this. There’s likely a bug with the publishing script. I’ve published 3.21.1 with the
dist/
folder and deprecated @tensorflow/tfjs-node 3.21.0.Similar issue for me. I got a node application using @tensorflow/tsjf-node@3.18.0 which suddenly stopped creating the
dist
directory duringnpm install
. Worked yesterday without problems. Updating to @3.20.0 or @3.21.0 didn’t work. Neither version creates thedist
folder for me.Some more infos about my application:
"@tensorflow/tfjs": "^3.18.0",
and"@tensorflow/tfjs-node": "^3.18.0",
as regular dependenciesnpm install
is run inside the container to install dependencies from package.jsonnode_modules/@tensorflow/tfjs-node/dist
folder created at all