-
-
Save atomlab/7e8122aef53b9c29ab883fd67603e3bb to your computer and use it in GitHub Desktop.
Revisions
-
ZhaofengWu revised this gist
Sep 9, 2022 . 1 changed file with 8 additions and 9 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -3,15 +3,14 @@ set -e # zsh will not install without ncurses. If the machine doesn't have this library, it will need to be installed first. export CXXFLAGS=" -fPIC" CFLAGS=" -fPIC" CPPFLAGS="-I${HOME}/include" LDFLAGS="-L${HOME}/lib" wget https://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.2.tar.gz tar -xzvf ncurses-6.2.tar.gz cd ncurses-6.2 ./configure --prefix=$HOME --enable-shared make make install cd .. && rm ncurses-6.2.tar.gz && rm -r ncurses-6.2 wget -O zsh.tar.xz https://sourceforge.net/projects/zsh/files/latest/download mkdir zsh && unxz zsh.tar.xz && tar -xvf zsh.tar -C zsh --strip-components 1 -
ZhaofengWu revised this gist
Aug 25, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -20,7 +20,7 @@ cd zsh make make install cd .. && rm zsh.tar && rm -r zsh echo -e "export SHELL=~/bin/zsh\nexec ~/bin/zsh -l" >> ~/.bash_profile # or chsh # Optional: install oh-my-zsh sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)" -
ZhaofengWu revised this gist
Aug 25, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -20,7 +20,7 @@ cd zsh make make install cd .. && rm zsh.tar && rm -r zsh echo -e "export SHELL=/bin/zsh\nexec /bin/zsh -l" >> ~/.bashrc # or chsh # Optional: install oh-my-zsh sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)" -
ZhaofengWu revised this gist
Dec 15, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,7 @@ set -e # zsh will not install without ncurses. If the machine doesn't have this library, it will need to be installed first. # Uncomment the following to do that. # export CXXFLAGS=" -fPIC" CFLAGS=" -fPIC" CPPFLAGS="-I${HOME}/include" LDFLAGS="-L${HOME}/lib" # wget https://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.2.tar.gz # tar -xzvf ncurses-6.2.tar.gz # cd ncurses-6.2 -
ZhaofengWu revised this gist
Jan 5, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -20,7 +20,7 @@ cd zsh make make install cd .. && rm zsh.tar && rm -r zsh echo "~/bin/zsh" >> ~/.bashrc # or chsh # Optional: install oh-my-zsh sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)" -
ZhaofengWu revised this gist
Dec 4, 2020 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -20,6 +20,7 @@ cd zsh make make install cd .. && rm zsh.tar && rm -r zsh echo "~/bin/zsh" >> ~/.bashrc # Optional: install oh-my-zsh sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)" -
ZhaofengWu renamed this gist
Dec 4, 2020 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,8 +2,8 @@ set -e # zsh will not install without ncurses. If the machine doesn't have this library, it will need to be installed first. # Uncomment the following to do that. # export CXXFLAGS=" -fPIC" CFLAGS=" -fPIC" CPPFLAGS="-I${HOME}/ncurses/include" LDFLAGS="-L${HOME}/ncurses/lib" # wget https://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.2.tar.gz # tar -xzvf ncurses-6.2.tar.gz @@ -16,7 +16,7 @@ set -e wget -O zsh.tar.xz https://sourceforge.net/projects/zsh/files/latest/download mkdir zsh && unxz zsh.tar.xz && tar -xvf zsh.tar -C zsh --strip-components 1 cd zsh ./configure --prefix=$HOME make make install cd .. && rm zsh.tar && rm -r zsh -
ZhaofengWu revised this gist
Dec 4, 2020 . 1 changed file with 13 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,13 +2,24 @@ set -e # zsh will not install without ncurses. If the machine doesn't have this library, # it will need to be installed first. Uncomment the following (and the zsh make flag) to do that. # export CXXFLAGS=" -fPIC" CFLAGS=" -fPIC" CPPFLAGS="-I${HOME}/ncurses/include" LDFLAGS="-L${HOME}/ncurses/lib" # wget https://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.2.tar.gz # tar -xzvf ncurses-6.2.tar.gz # cd ncurses-6.2 # ./configure --prefix=$HOME --enable-shared # make # make install # cd .. && rm ncurses-6.2.tar.gz && rm -r ncurses-6.2 wget -O zsh.tar.xz https://sourceforge.net/projects/zsh/files/latest/download mkdir zsh && unxz zsh.tar.xz && tar -xvf zsh.tar -C zsh --strip-components 1 cd zsh ./configure --prefix=$HOME #--enable-shared make make install cd .. && rm zsh.tar && rm -r zsh # Optional: install oh-my-zsh sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)" -
ZhaofengWu revised this gist
Dec 4, 2020 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,7 @@ #!/bin/bash set -e wget -O zsh.tar.xz https://sourceforge.net/projects/zsh/files/latest/download mkdir zsh && unxz zsh.tar.xz && tar -xvf zsh.tar -C zsh --strip-components 1 cd zsh -
ZhaofengWu created this gist
Oct 12, 2020 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ wget -O zsh.tar.xz https://sourceforge.net/projects/zsh/files/latest/download mkdir zsh && unxz zsh.tar.xz && tar -xvf zsh.tar -C zsh --strip-components 1 cd zsh ./configure --prefix=$HOME make make install cd .. && rm zsh.tar && rm -r zsh # Optional: install oh-my-zsh sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"