Skip to main content

Ubuntu 16.04 : Fixing "/usr/bin/env: ‘node’: No such file or directory"

mccrazy@mccrazy-Lenovo-N22:~$ cd Documents/mern2018/men_api/
mccrazy@mccrazy-Lenovo-N22:~/Documents/mern2018/men_api$ sudo npm install express-generator -g
[sudo] password for mccrazy: 
/usr/local/bin/express -> /usr/local/lib/node_modules/express-generator/bin/express-cli.js
/usr/local/lib
└── express-generator@4.16.0 

mccrazy@mccrazy-Lenovo-N22:~/Documents/mern2018/men_api$ sudo express node-rest-auth
/usr/bin/env: 'node': No such file or directory
mccrazy@mccrazy-Lenovo-N22:~/Documents/mern2018/men_api$ express node-rest-auth
/usr/bin/env: 'node': No such file or directory
mccrazy@mccrazy-Lenovo-N22:~/Documents/mern2018/men_api$ sudo apt-get install nodejs-legacy
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following NEW packages will be installed:
  nodejs-legacy
0 upgraded, 1 newly installed, 0 to remove and 115 not upgraded.
Need to get 27.9 kB of archives.
After this operation, 82.9 kB of additional disk space will be used.
Get:1 http://ph.archive.ubuntu.com/ubuntu xenial-updates/universe amd64 nodejs-legacy all 4.2.6~dfsg-1ubuntu4.2 [27.9 kB]
Fetched 27.9 kB in 0s (44.1 kB/s)      
Selecting previously unselected package nodejs-legacy.
(Reading database ... 226352 files and directories currently installed.)
Preparing to unpack .../nodejs-legacy_4.2.6~dfsg-1ubuntu4.2_all.deb ...
Unpacking nodejs-legacy (4.2.6~dfsg-1ubuntu4.2) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up nodejs-legacy (4.2.6~dfsg-1ubuntu4.2) ...
mccrazy@mccrazy-Lenovo-N22:~/Documents/mern2018/men_api$ express node-rest-auth
  warning: the default view engine will not be jade in future releases
  warning: use `--view=jade' or `--help' for additional options


   create : node-rest-auth/
   create : node-rest-auth/public/
   create : node-rest-auth/public/javascripts/
   create : node-rest-auth/public/images/
   create : node-rest-auth/public/stylesheets/
   create : node-rest-auth/public/stylesheets/style.css
   create : node-rest-auth/routes/
   create : node-rest-auth/routes/index.js
   create : node-rest-auth/routes/users.js
   create : node-rest-auth/views/
   create : node-rest-auth/views/error.jade
   create : node-rest-auth/views/index.jade
   create : node-rest-auth/views/layout.jade
   create : node-rest-auth/app.js
   create : node-rest-auth/package.json
   create : node-rest-auth/bin/
   create : node-rest-auth/bin/www

   change directory:
     $ cd node-rest-auth

   install dependencies:
     $ npm install

   run the app:
     $ DEBUG=node-rest-auth:* npm start

mccrazy@mccrazy-Lenovo-N22:~/Documents/mern2018/men_api$ 

Comments

Popular posts from this blog

Alidropship plugins - Da Vince Theme Subscription Fixed using MailChimp

From MailChimp Code: Wrecked the design on the UI <!-- Begin MailChimp Signup Form --> <link href="// cdn-images.mailchimp.com/embedcode/slim-10_7.css " rel="stylesheet" type="text/css"> <style type="text/css"> #mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif;  width:450px;} /* Add your own MailChimp form style overrides in your site stylesheet or in this style block.    We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */ </style> <div id="mc_embed_signup"> <form action=" https://tester.us19.list-manage.com/subscribe/post?u=5b6e4f12343b19be8f09a2fef&amp;id=aeeef4383c " method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>     <div id="mc_embed_signup_scroll"> <label for...

Ubuntu 20.04 LTS | Installing OpenJDK 11 (LTS) JDK, JRE, HotSpot

https://adoptopenjdk.net/installation.html#linux-pkg ctrl + f => Linux RPM and DEB installer packages bboy@bboy-LE7450:~$ cat /etc/os-release | grep UBUNTU_CODENAME UBUNTU_CODENAME=focal bboy@bboy-LE7450:~$ sudo apt-get install wget apt-transport-https gnupg [sudo] password for bboy: Reading package lists... Done Building dependency tree       Reading state information... Done wget is already the newest version (1.20.3-1ubuntu1). wget set to manually installed. gnupg is already the newest version (2.2.19-3ubuntu2.1). gnupg set to manually installed. The following packages were automatically installed and are no longer required:   linux-headers-5.8.0-45-generic linux-hwe-5.8-headers-5.8.0-45   linux-image-5.8.0-45-generic linux-modules-5.8.0-45-generic   linux-modules-extra-5.8.0-45-generic Use 'sudo apt autoremove' to remove them. The following NEW packages will be installed:   apt-transport-https 0 upgraded, 1 newly installed, 0 to remove and 21 not upgraded. Need to get 1,...