Ape Framework is an easy-to-use Web3 development tool. Users can compile, test, and interact with smart contracts all in one command line session. With our modular plugin system, Ape supports multiple contract languages and chains.
Ape is built by ApeWorX LTD.
Join our ApeWorX Discord server to stay up to date on new releases, plugins, and tutorials.
If you want to get started now, see the Quickstart section.
Read our technical documentation to get a deeper understanding of our open source Framework.
Read our academic platform will help you master Ape Framework with tutorials and challenges.
In the latest release, Ape requires:
- Linux or macOS
- Python 3.8 up to 3.11
- Windows: Install Windows Subsystem Linux (WSL)
Check your python version in a terminal with python3 --version
.
There are three ways to install ape: pipx
, pip
, or Docker
.
-
If using
pip
, we advise using the most up-to-date version ofpip
to increase the chance of a successful installation.- See issue ApeWorX#1558.
- To upgrade
pip
from the command line, run:pip install --upgrade pip
.
-
We advise installing in a virtualenv or venv to avoid interfering with OS-level site packages.
-
We advise installing
ape
with recommended pluginspip install eth-ape'[recommended-plugins]'
. -
We advise for macOS users to install virtual env via homebrew.
-
Install
pipx
via their installation instructions orpip
via their installation instructions. -
Install
ape
viapipx install eth-ape
orpip install eth-ape
.
Ape can also run in a docker container.
Please visit our Dockerhub for more details on using Ape with Docker.
docker run \
--volume $HOME/.ape:/home/harambe/.ape \
--volume $HOME/.vvm:/home/harambe/.vvm \
--volume $HOME/.solcx:/home/harambe/.solcx \
--volume $PWD:/home/harambe/project \
apeworx/ape compile
After you have installed Ape, run ape --version
to verify the installation was successful.
Interact with Ape using either the CLI or Python code.
See the following user-guides for more in-depth tutorials:
Ape's modular plugin system allows users to have an interoperable experience with Web3.
-
Learn about installing plugins from following this installing user guide.
-
Learn more about developing your own plugins from this developing user guide.
NOTE: If a plugin does not originate from the ApeWorX GitHub Organization, you will get a warning about installing 3rd-party plugins. Install 3rd party plugins at your own risk.