This repository has been archived by the owner on Mar 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Updating
Christopher Dunn edited this page Jun 27, 2016
·
4 revisions
See Installation for more explanation.
rm -rf fc_env virtualenv # necessary if you are upgrading from an older git revision
git checkout 0.4.0 # or whatever version you want
make init
source env.sh
make config-standard
make -j install
make test # to run a simple one
note: do not run make clean after building, as binaries are symlinked to the bin directory, not copied.
If you are using a fairly recent version, it's all so much simpler! Hopefully, you used make config-edit
or make config-edit-user
when you installed. Then, to update:
git pull origin master # or whatever version you want
git submodule update
make -j install
make test # to run a simple one
In fact, if only pure Python code changes, you don't even need to re-run make install
.