Replies: 3 comments 2 replies
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Versions below
2.10.0
Since version
2.10.0
, we have stopped supporting python version3.8
and3.9
.You can check which version of python your environment is using with:
conda activate ab
and thenconda list python
. If your python version is3.10
or higher, you can update your Activity Browser like normal. If your python version is3.8
or3.9
, you need to re-install your environment following the instructions below:Note
Don't worry about your projects and databases, that is stored safely and will still be available after following this guide.
Make sure you are in your
base
channel (so you have not doneconda activate ab
) with:conda deactivate
You now need to re-create the environment with:
conda create -n ab -c conda-forge --solver libmamba activity-browser
(of course, you can use something different fromab
if you wish). This will completely re-create your environment, and warn you if you want to over-write the old environment, just confirm.Now you can use AB as normal again with
conda activate ab
andactivity-browser
When you install updates again, you can follow the normal update instructions:
conda update activity-browser
Versions below
2.7.5
ordev 2022.xx.xx
Ever since version
2.7.5
(ordev 2022.xx.xx
), we have moved on from thedevelopment
andstable
versions to just one version, and now publish that throughconda-forge
.If you have activity-browser
2.7.5
(ordev 2022.xx.xx
) or older, you have to make some changes to your conda configuration to update to our newest version.Note
Don't worry about your projects and databases, that is stored safely and will still be available after following this guide.
Make sure you are in your
base
channel (so you have not doneconda activate ab
) with:conda deactivate
You now need to review your available channels:
conda config --show channels
Then, remove the channels
bsteubing
,haasad
,cmutel
andpascallesage
if the are present in the list with:conda config --remove channels bsteubing
for each channelTip
If you use arrow up, you re-enter the last command in your terminal, and only need to change the name of the channel.
conda-forge
):conda create -n ab -c conda-forge --solver libmamba activity-browser
(of course, you can use something different fromab
if you wish)This will completely re-create your environment, and warn you if you want to over-write the old environment, just confirm.
Now you can use AB as normal again with
conda activate ab
andactivity-browser
When you install updates again, you can follow the normal update instructions:
conda update activity-browser
Beta Was this translation helpful? Give feedback.
All reactions