Search This Blog

Showing posts with label Module. Show all posts
Showing posts with label Module. Show all posts

Thursday, September 22, 2022

Unable to resolve module react-native-reanimated


step 1. npm i react-native-reanimated


step 2. add plugin babel.config.js


module.exports = {
  presets: ['module:metro-react-native-babel-preset'],
   plugins: [
          'react-native-reanimated/plugin',
      ],
};

step 3 When trying to run the code after close the terminal I still I'm facing same issue

  Error: Reanimated 2 failed to create a worklet, maybe you forgot to add Reanimated's babel plugin


step 4. After that, i close the current terminal and run this command

npm start -- --reset-cache 


Enjoy !

Tuesday, December 24, 2019

Flask Ask - modulenotfounderror no module named 'pip.req' flask-ask

Try like below.


pip install git+https://github.com/johnwheeler/flask-ask.git@v0.8.8

pip install flask-ask




#Enjoy

Monday, February 11, 2019

Install Java Jar Module as Windows Service

1.  Install nssm.exe
2. Go to that nsse.exe folder
3. type like below command

nssm.exe install "Test-JAR-Service" "C:\Program Files\Java\jdk1.8.0_77\bin\java.exe" "-jar D:\Test\Test.jar"


open services.msc from start run, there u can see ur service,
enjoy


To remove the service
4. sc delete "Test-JAR-Service"

Wednesday, June 14, 2017

Dynamic Web Module 3.0 requires Java 1.6 or newer” in Maven Projects

Open your project’s pom.xml and add this plugin tag
<build>
    <plugins>
        <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
        <configuration>
            <source>1.8</source>
            <target>1.8</target>
        </configuration>
    </plugin>
    </plugins>
</build>
Finally, right click on your project > Maven > Update Project

Hit Counter


View My Stats