Archived
Use AlgoKit
- Install Docker Desktop
- Install Algorand sandbox
- Add this project folder as bind volume in sandbox
docker-compose.yml
under keyservices.algod
:volumes: - type: bind source: <path> target: /data
- Start sandbox:
$ ./sandbox up
- Install Python virtual environment in project folder:
$ python -m venv venv $ source ./venv/Scripts/activate # Windows $ source ./venv/bin/activate # Linux
- Use Python interpreter:
./venv/Scripts/python.exe
VSCode:Python: Select Interpreter