Last active
April 16, 2022 02:56
-
-
Save YukiGibson/7444531e1e2f99d816bec3ed13e7fe96 to your computer and use it in GitHub Desktop.
Install mit-scheme for arm64
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
#!/usr/bin/env bash | |
# Install mit-scheme for arm64 | |
wget http://inst.eecs.berkeley.edu/~scheme/precompiled/Linux/STk-4.0.1-ucb1.3.6.i386.rpm | |
sudo apt-get install alien | |
fakeroot alien --target=amd64 STk-4.0.1-ucb1.3.6.i386.rpm | |
dpkg -i stk_4.0.1-1_amd64.deb | |
sudo dpkg --add-architecture i386 | |
sudo apt-get install gcc-multilib | |
sudo apt-get install libsm6:i386 libx11-6:i386 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment