Created
January 25, 2020 23:46
-
-
Save harijay/a28ed2753337d25e0cd3ff84f8371bd7 to your computer and use it in GitHub Desktop.
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/sh | |
#Script to install Canto | |
git clone https://github.com/themoken/canto-next.git | |
cd canto-next | |
#sudo $(xcrun --find python3) setup.py install | |
# This didnt work as the System python3 did not play well with ncurses from homebrew | |
# and probably wasnt compiled with built in ncurses support | |
# This uses the compiled Python | |
/usr/local/bin/python3.8 setup.py install | |
cd ../ | |
git clone https://github.com/themoken/canto-curses.git | |
cd canto-curses | |
#sudo $(xcrun --find python3) setup.py install | |
/usr/local/bin/python3.8 setup.py install | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment