You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
another issue is that it seems that when running an update with
python setup.py install
the bin/xfluo in the conda directory is not updated all the time (perhaps the bin content only update when there is a version bump?) any way what worked for me was:
revisiting the issue, when you install the software, are you doing it using the conda installation method or by entering python setup.py install?
I am having this same issue when running conda install -c fabriciosm xfluo. Even thought the contents that are downloaded are the most up to date, the version that launches is an older version. Pip uninstall xfluo does not seem to work for me however.
@FabricioSMarin after the main repo is update add in the setup.py scripts=['bin/xfluo'] as this:
setup(
scripts=['bin/xfluo'],
)
this should make xfluo start as command from any forlder
The text was updated successfully, but these errors were encountered: