Installation & Update
Last updated
Was this helpful?
Python 3.6 and up
sheetwork is written in python and is compatible with versions of python 3.6 and up. Make sure you get that sorted before you get started with sheetwork.
Our developers are currently using Python 3.7.
pipx is a really cool way to install applications globally (kind of like brew) although under the hood the application will reside in its own virtual environment which prevent from some issues with packages that conflict each other --which would be the case if you installed sheetwork via pip globally.
install pipx via brew: brew install pipx
once installed you can now use pipx to install sheetwork.
pipx install sheetwork
sheetwork --versionif sheetwork --version ran and printed a version in your terminal you're good to go!
If you prefer to create a special virtual environment for sheetwork, the following method is also a safe way to install and use sheetwork
sheetwork is distributed via Python Index PyPi
we recommend that you set up and run sheetwork from a virtual environment to keep things clean, to avoid package requirements collisions and other nasties. Here's a fantastic resource from Real Python on how to set up virtual environments.
activate your virtual environment and the following command should take care of the rest:
if the --version command printed a sheetwork version in your terminal you're good.
If you have installed sheetwork using pipx you can update your app from anywhere. Open a terminal window and run the following command:
If you have set up sheetwork inside a specific virtual environment you'll need to fo the following:
activate your virtual environment
run pip install -U sheetwork
Last updated
Was this helpful?
Was this helpful?
pip install sheetwork
sheetwork --versionpipx upgrade sheetwork