denisecailab / ezTrack

Free, platform independent, behavior tracking software.
GNU General Public License v3.0
118 stars 41 forks source link

Module not found errors #80

Closed ojgannon closed 11 months ago

ojgannon commented 11 months ago

Hi,

I'm very new to python (and coding in general) and I am trying to analyze behavior data using ezTrack. I downloaded miniconda and opened ezTrack in the jupyter notebook. When I run the first cell, I get the error shown below: image

Could the issue be related to the packages that I have installed? image image

Any help would be very much appreciated! Thank you so much! Olivia

ZachPenn commented 11 months ago

Hi Olivia, Yes, it seems most likely this is a package issue (I'm not seeing tqdm, which is required). I would follow the most up to date install instructions here: https://github.com/denisecailab/ezTrack/wiki/Installation. Things have changed slightly since the initial publication. You should uninstall before doing this (instructions at bottom of webpage provided).
Best, Zach

treetrunkz commented 11 months ago

As you can see the missing package is located in 'import LocationTrackingFunctions as lt' this could be a number of things. But you need to locate tqdm, if it's missing add it. I'd if it's not then remove it and reinstall.

Also, there in your environment, the package doesnt exist. You may need to update your environment as well. You can use pipreqs to automatically generate a requirements.txt file based on the imports statement in any .py file or project - then download from there. Or even chain these with one command. :^)