Skip to main content

Solution-windows 'expo' is not recognized as an internal or external command

Solution for expo is not recognized as an internal or external command,operable program or batch file in Windows 10

Sometimes expo will not work globally mostly in windows 10, If you are facing same issue then follow the below Steps

1) Click on windows button and search for "Environment variables" and click on "Edit the system environment variables"





2) Now you will see a popup like below screen. Then you need to click on Environment Variables. (Please see highlight part in below image)


 

 

3)Then click on new button that i have highlighted in below image




4. Then a popup will open and you need to fill details like below mentioned
Variable Name :Path
Variable Value: %USERPROFILE%\AppData\Roaming\npm

Here we are creating a new path variable and passing location of npm.

 



Now Click on OK and close all the terminal windows and open new CMD or terminal and type Expo . Great now you can access expo from any location . Thanks

This solution is well tested with windows 10 and still if you face any issue then send an email. Thanks

Comments

  1. As reported by Stanford Medical, It's in fact the one and ONLY reason this country's women get to live 10 years longer and weigh on average 19 kilos less than us.

    (And realistically, it has absolutely NOTHING to do with genetics or some secret-exercise and absolutely EVERYTHING related to "HOW" they eat.)

    P.S, What I said is "HOW", not "what"...

    Tap this link to determine if this brief test can help you find out your true weight loss possibilities

    ReplyDelete
  2. Look at the way my colleague Wesley Virgin's autobiography begins in this SHOCKING AND CONTROVERSIAL VIDEO.

    Wesley was in the army-and shortly after leaving-he unveiled hidden, "SELF MIND CONTROL" secrets that the CIA and others used to get whatever they want.

    THESE are the EXACT same SECRETS many famous people (especially those who "became famous out of nothing") and the greatest business people used to become rich and famous.

    You've heard that you use less than 10% of your brain.

    Really, that's because most of your BRAINPOWER is UNCONSCIOUS.

    Perhaps that thought has even taken place INSIDE OF YOUR very own mind... as it did in my good friend Wesley Virgin's mind seven years ago, while driving an unlicensed, beat-up trash bucket of a car with a suspended license and with $3 on his debit card.

    "I'm so fed up with living check to check! When will I finally succeed?"

    You took part in those types of questions, isn't it right?

    Your very own success story is waiting to be written. All you need is to believe in YOURSELF.

    Take Action Now!

    ReplyDelete
  3. This comment has been removed by the author.

    ReplyDelete
  4. Great solution my friend !!!
    thank you
    works like a charm

    ReplyDelete
  5. Your blogs further more each else volume is so entertaining further serviceable It appoints me befall retreat encore. I will instantly grab your rss feed to stay informed of any updates. my currency converter

    ReplyDelete
  6. Your blog is great. I read a lot of interesting things from it. Thank you very much for sharing. Hope you will update more news in the future.

    Freelance react native services

    ReplyDelete
  7. Hi
    I've followed your instructions to the dot... but CMD still not recognizing it.
    any alternative solutions

    ReplyDelete
  8. Thank you for your post, I look for such article along time, today i find it finally. this post give me lots of advise it is very useful for me.
    web designing course in chennai

    ReplyDelete
  9. It really helps me, You save my time. Thanks

    http://tutorialscorner.net

    ReplyDelete
  10. This comment has been removed by the author.

    ReplyDelete
  11. Nice post. If you are searching for a React App development Company USA, CronJ IT Technologies will be your right choice.

    ReplyDelete
  12. Your blog contains excellent information, and I also have some useful information about the best flutter app development company. This should be extremely beneficial to you.

    ReplyDelete
  13. This post is very simple to read and appreciate without leaving any details out. Great work! Anti captcha key

    ReplyDelete
  14. solidity developers may be difficult to hire if you have no experience with screening resumes and profiles. The resources listed here can be very helpful in guiding you through this process.

    ReplyDelete
  15. very helpful information.
    QuikieApps Video analytics solutions uses video surveillance systems to extract accessible, usable, and measurable information from live or stored video footage.
    Video Analytics Solutions use artificial intelligence and machine learning to identify and remove particles in the video, identify each object using a professional Deep Convolutional Neural network, and classify each object for innovative surveillance analysis, such as search and filtration notifying, and aggregation of data and visualization. For industrial automation, intelligent cities, green systems, and other sectors, QuikieApps’s Video Analytics Solutions (VAS) product range speeds video analytics pipelines to provide meaningful business insight from video streaming. Built on QuikieApps are analytics platforms with AI+ acceleration utilizing GPUs or FPGAs, QuikieApps Video Analytics Solution provides system integrator and standalone software providers with the best score and adaptability.

    ReplyDelete
  16. Thanks for sharing this kind of information. This is really meant to me. Best react app development company in Australia

    ReplyDelete
  17. This is an awesome post. Really very informative and creative contents.

    Have you checked all the App Ideas? How many app ideas excites you most? Which App Idea would you like to execute in 2022? We are at, The App Ideas offer a great consultation and perfect deal for Mobile Apps. Feel free to reach us.

    ReplyDelete
  18. Thanks for taking the time to discuss this, I feel strongly about it and love learning more on this topic. anti captcha key

    ReplyDelete

Post a Comment

Popular posts from this blog

Run and compile sass scss file to css using node

  Today we learn how to use scss and generate css using node  or Run and compile sass scss file to css using node   So please follow simple  steps :-   Today we will create a project that can read scss file and generates css with it  Note: Make sure you have installed node in your system. If you want to help to install node js based on your system then check our other tutorial or check node js official website. Now create a blank folder and open  terminal(linux) or cmd(windows) and navigate to your current project folder by using cd command Now run below command npm init after enter it will ask you some package info that you can fill according to you or just keep enter until it finished. The above command will generate package.json file Now  we will install npm module that will convert our scss to css Run below command: npm install node-sass So we have installed node-sass package . Now open package.json file in your editor and add below code into it into

How to retrieve Facebook Likes, share , comment Counts

function facebook_count($url){     // Query in FQL     $fql  = "SELECT share_count, like_count, comment_count ";     $fql .= " FROM link_stat WHERE url = '$url'";     $fqlURL = "https://api.facebook.com/method/fql.query?format=json&query=" . urlencode($fql);     // Facebook Response is in JSON     $response = file_get_contents($fqlURL);     return json_decode($response); } $fb = facebook_count('https://www.facebook.com/BahutHoGyiPadhai'); // facebook share count echo $fb[0]->share_count;  echo "like"; // facebook like count echo $fb[0]->like_count ; echo "comment"; // facebook comment count echo $fb[0]->comment_count;  ?>

jQuery Datatable add date range filter

jQuery Datatable add date range filter Datatable is most useful jQuery plugin that helps to make our html tables more powerful and give powers to user to filter , search, sort, pagination etc, But Data table provides a common filter only and yes we can customize and add filter for each column, but still sometimes we need an advance filter like show results only between a date range, So today we will learn how to create a minimum and maximum date range fields and show date picker on it, and user can fill dates by selecting dates and data table will auto filter records based on it. Keep follow below steps :- I am using Bootstrap if you want to use any other framework then you can use. Create a new index.php file  and paste below code in it, i have used all required CDN like bootstrap, datatable, datepicker etc. <!DOCTYPE html> <html> <head>     <title>Datatable Date Range Filter Example</title>     <link rel="stylesheet" href="https://maxcd