Code Monkey home page Code Monkey logo

troubleshootings's Introduction

Troubleshooting

  • ImportError: numpy.core.multiarray failed to import

pip install numpy==1.18.0

  • OpenBLAS blas_thread_init: pthread_create failed for thread 63 of 64: Resource temporarily unavailable
export OMP_NUM_THREADS=1
export USE_SIMPLE_THREADED_LEVEL3=1

OpenMathLib/OpenBLAS#1668 (comment)

  • ImportError: libGL.so.1: cannot open shared object file: No such file or directory
sudo apt update
sudo apt -y install libgl1-mesa-glx

conda-forge/pygridgen-feedstock#10 (comment)

  • wandb Segmentation Fault

pip install opencv-python==4.3.0.36

wandb/wandb#1210

Tips

  • Kill all processes of which names include some ${proc_name}

ps -ef | grep ${proc_name} | grep -v grep | awk '{print $2}' | xargs -r kill -9

  • Search files that contain text

grep -nrw $PATH -e $TEXT

  • JW Player change frame rate
var video = document.getElementById('exampleId')
var video_speed = video.getElementsByTagName('video')[0]
alert(video_speed.playbackRate)

video_speed.playbackRate=0.2;

https://stackoverflow.com/a/18312602

troubleshootings's People

Contributors

jd730 avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.