-
Notifications
You must be signed in to change notification settings - Fork 0
Troubleshooting: analysis
Q: My crowd movies are empty and the movies are 0 bytes in size but I don't see any errors, why?
A: You likely are using the wrong version of ffmpeg, or don't have the proper movie encoders. Make sure you download ffmpeg
like so: conda install -c conda-forge ffmpeg
.
Q: Why do I get an OpenMP error when trying to install MoSeq2-model on a Mac?
A: This is an issue with the Mac supplied version of gcc. Install the latest gcc using homebrew then set your gcc and gxx to use the homebrew version.
brew install gcc
export CC=/usr/local/bin/gcc-7
export CXX=/usr/local/bin/g++-7
cd ~/python_repos/moseq2-model/
pip install -e . --process-dependency-links
Q: Why do I see a bunch of Numpy warnings about binary incompatibility?
A: This a known issue with the latest version of Numpy. As far as we know this warning is benign. The simplest way to supress this message is to downgrade Numpy to 1.14.5.
pip install numpy==1.14.5
See this issue
MoSeq2 Wiki | Home | Changelog | Setup | Acquisition | Analysis | Troubleshooting |