Created
August 2, 2022 12:18
-
-
Save asbjornenge/f91c0866eed7b1b64a0ff23c418e3b4a to your computer and use it in GitHub Desktop.
Init SmartPy virtualenv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
rm -Rf bin pyvenv.cfg | |
wget https://smartpy.io/cli/install.sh | |
chmod +x install.sh | |
./install.sh --prefix bin | |
rm install.sh | |
virtualenv . | |
cd bin && ln -sf SmartPy.sh spy && cd .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment