Getting npm ERR! ENOTDIR: not a directory while installing package which depends on another












7















Note: I have latest npm and node versions. I have tried the answers provided in npm install error ENOTDIR but didn't work for me.



I need to install 2 npm modules got as .tgz packages on NodeRed



1. x.tgz
2. y.tgz


I could install the first package using npm install path/to/x.tgz



I used the same command npm install path/to/y.tgz command but I am getting following error.



malintha@malintha-VirtualBox:~/.node-red$ sudo npm install path/to/y.tgz 

npm ERR! path path/to/y.tgz/x.tgz

npm ERR! code ENOTDIR
npm ERR! errno -20
npm ERR! syscall stat
npm ERR! ENOTDIR: not a directory, stat 'path/to/y.tgz/x.tgz'


According to the error log, y module is looking for x.tgz inside it. Then I checked the package.json of y.tgz artefact.



I can see it has x.tgz as the dependency inside it, but it don't have x.tgz inside it.



 "dependencies": {
"@abc/pqr": "file:x.tgz",
"ajv": "^6.5.1",
"debug": "^3.1.0"
}


According to the instructions, it should be fine if I install the x.tgz and then y.tgz. I could install these x and y some time back but now I cannot install it.



What might be the root cause for this issue?
Is this npm and node versions related issue?










share|improve this question





























    7















    Note: I have latest npm and node versions. I have tried the answers provided in npm install error ENOTDIR but didn't work for me.



    I need to install 2 npm modules got as .tgz packages on NodeRed



    1. x.tgz
    2. y.tgz


    I could install the first package using npm install path/to/x.tgz



    I used the same command npm install path/to/y.tgz command but I am getting following error.



    malintha@malintha-VirtualBox:~/.node-red$ sudo npm install path/to/y.tgz 

    npm ERR! path path/to/y.tgz/x.tgz

    npm ERR! code ENOTDIR
    npm ERR! errno -20
    npm ERR! syscall stat
    npm ERR! ENOTDIR: not a directory, stat 'path/to/y.tgz/x.tgz'


    According to the error log, y module is looking for x.tgz inside it. Then I checked the package.json of y.tgz artefact.



    I can see it has x.tgz as the dependency inside it, but it don't have x.tgz inside it.



     "dependencies": {
    "@abc/pqr": "file:x.tgz",
    "ajv": "^6.5.1",
    "debug": "^3.1.0"
    }


    According to the instructions, it should be fine if I install the x.tgz and then y.tgz. I could install these x and y some time back but now I cannot install it.



    What might be the root cause for this issue?
    Is this npm and node versions related issue?










    share|improve this question



























      7












      7








      7








      Note: I have latest npm and node versions. I have tried the answers provided in npm install error ENOTDIR but didn't work for me.



      I need to install 2 npm modules got as .tgz packages on NodeRed



      1. x.tgz
      2. y.tgz


      I could install the first package using npm install path/to/x.tgz



      I used the same command npm install path/to/y.tgz command but I am getting following error.



      malintha@malintha-VirtualBox:~/.node-red$ sudo npm install path/to/y.tgz 

      npm ERR! path path/to/y.tgz/x.tgz

      npm ERR! code ENOTDIR
      npm ERR! errno -20
      npm ERR! syscall stat
      npm ERR! ENOTDIR: not a directory, stat 'path/to/y.tgz/x.tgz'


      According to the error log, y module is looking for x.tgz inside it. Then I checked the package.json of y.tgz artefact.



      I can see it has x.tgz as the dependency inside it, but it don't have x.tgz inside it.



       "dependencies": {
      "@abc/pqr": "file:x.tgz",
      "ajv": "^6.5.1",
      "debug": "^3.1.0"
      }


      According to the instructions, it should be fine if I install the x.tgz and then y.tgz. I could install these x and y some time back but now I cannot install it.



      What might be the root cause for this issue?
      Is this npm and node versions related issue?










      share|improve this question
















      Note: I have latest npm and node versions. I have tried the answers provided in npm install error ENOTDIR but didn't work for me.



      I need to install 2 npm modules got as .tgz packages on NodeRed



      1. x.tgz
      2. y.tgz


      I could install the first package using npm install path/to/x.tgz



      I used the same command npm install path/to/y.tgz command but I am getting following error.



      malintha@malintha-VirtualBox:~/.node-red$ sudo npm install path/to/y.tgz 

      npm ERR! path path/to/y.tgz/x.tgz

      npm ERR! code ENOTDIR
      npm ERR! errno -20
      npm ERR! syscall stat
      npm ERR! ENOTDIR: not a directory, stat 'path/to/y.tgz/x.tgz'


      According to the error log, y module is looking for x.tgz inside it. Then I checked the package.json of y.tgz artefact.



      I can see it has x.tgz as the dependency inside it, but it don't have x.tgz inside it.



       "dependencies": {
      "@abc/pqr": "file:x.tgz",
      "ajv": "^6.5.1",
      "debug": "^3.1.0"
      }


      According to the instructions, it should be fine if I install the x.tgz and then y.tgz. I could install these x and y some time back but now I cannot install it.



      What might be the root cause for this issue?
      Is this npm and node versions related issue?







      node.js npm






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 20 '18 at 13:03







      Malintha

















      asked Dec 20 '18 at 12:58









      MalinthaMalintha

      1,34962653




      1,34962653
























          1 Answer
          1






          active

          oldest

          votes


















          2





          +50









          I'm re-writing this answer after deleting my old answer. I tested it with and node v11.6.0 and npm v4.5.0-next.0 on Linux.



          To install y.tgz, I tried as below:




          1. I copied both tgz files in the same directory.


          2. I modified package.json of y.tgz as below:



            "dependencies": {
            "@abc/pqr": "file:../x.tgz",
            "ajv": "^6.5.1",
            "debug": "^3.1.0"
            }



          dependencies supports file: + relative path or absolute path.



          So, you can choose anyone as your development condition.






          share|improve this answer
























          • Copying both tgz files into the same directory, to where I am installing those solved the issue.

            – Malintha
            Jan 7 at 10:35











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53869224%2fgetting-npm-err-enotdir-not-a-directory-while-installing-package-which-depends%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2





          +50









          I'm re-writing this answer after deleting my old answer. I tested it with and node v11.6.0 and npm v4.5.0-next.0 on Linux.



          To install y.tgz, I tried as below:




          1. I copied both tgz files in the same directory.


          2. I modified package.json of y.tgz as below:



            "dependencies": {
            "@abc/pqr": "file:../x.tgz",
            "ajv": "^6.5.1",
            "debug": "^3.1.0"
            }



          dependencies supports file: + relative path or absolute path.



          So, you can choose anyone as your development condition.






          share|improve this answer
























          • Copying both tgz files into the same directory, to where I am installing those solved the issue.

            – Malintha
            Jan 7 at 10:35
















          2





          +50









          I'm re-writing this answer after deleting my old answer. I tested it with and node v11.6.0 and npm v4.5.0-next.0 on Linux.



          To install y.tgz, I tried as below:




          1. I copied both tgz files in the same directory.


          2. I modified package.json of y.tgz as below:



            "dependencies": {
            "@abc/pqr": "file:../x.tgz",
            "ajv": "^6.5.1",
            "debug": "^3.1.0"
            }



          dependencies supports file: + relative path or absolute path.



          So, you can choose anyone as your development condition.






          share|improve this answer
























          • Copying both tgz files into the same directory, to where I am installing those solved the issue.

            – Malintha
            Jan 7 at 10:35














          2





          +50







          2





          +50



          2




          +50





          I'm re-writing this answer after deleting my old answer. I tested it with and node v11.6.0 and npm v4.5.0-next.0 on Linux.



          To install y.tgz, I tried as below:




          1. I copied both tgz files in the same directory.


          2. I modified package.json of y.tgz as below:



            "dependencies": {
            "@abc/pqr": "file:../x.tgz",
            "ajv": "^6.5.1",
            "debug": "^3.1.0"
            }



          dependencies supports file: + relative path or absolute path.



          So, you can choose anyone as your development condition.






          share|improve this answer













          I'm re-writing this answer after deleting my old answer. I tested it with and node v11.6.0 and npm v4.5.0-next.0 on Linux.



          To install y.tgz, I tried as below:




          1. I copied both tgz files in the same directory.


          2. I modified package.json of y.tgz as below:



            "dependencies": {
            "@abc/pqr": "file:../x.tgz",
            "ajv": "^6.5.1",
            "debug": "^3.1.0"
            }



          dependencies supports file: + relative path or absolute path.



          So, you can choose anyone as your development condition.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 7 at 2:33









          Anselmo ParkAnselmo Park

          886




          886













          • Copying both tgz files into the same directory, to where I am installing those solved the issue.

            – Malintha
            Jan 7 at 10:35



















          • Copying both tgz files into the same directory, to where I am installing those solved the issue.

            – Malintha
            Jan 7 at 10:35

















          Copying both tgz files into the same directory, to where I am installing those solved the issue.

          – Malintha
          Jan 7 at 10:35





          Copying both tgz files into the same directory, to where I am installing those solved the issue.

          – Malintha
          Jan 7 at 10:35




















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53869224%2fgetting-npm-err-enotdir-not-a-directory-while-installing-package-which-depends%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          MongoDB - Not Authorized To Execute Command

          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

          How to fix TextFormField cause rebuild widget in Flutter