Skip to content

Latest commit

 

History

History
74 lines (64 loc) · 2.6 KB

README.md

File metadata and controls

74 lines (64 loc) · 2.6 KB

myconfig

Use curl or wget to install packages and configures!
Both linux and macos supported!

NOTE: myconfig will OVERWRITE your oh-my-zsh, vim and tmux configures!

via curl

bash -c "$(curl -fsSL https://raw.githubusercontent.com/toosyou/myconfig/master/install.sh)"

via wget

bash -c "$(wget https://raw.githubusercontent.com/toosyou/myconfig/master/install.sh -O -)"

Snapshots

Ubuntu 14.04 LTS

ubuntu.gif

  • Only one password is needed to sudo apt-get and chsh.
  • Whole installation lasts about one minute, and you're ready to roll!

Installed packages

If pip or pip3 does not work under Linux machine (Impoer Error: Cannot import name main), please try the following solution:

sudo vim /usr/bin/pip3 (or pip)
or
sudo vim $(which pip3) (or $(which pip))

and, change from

from pip import main
if __name__ == '__main__':
    sys.exit(main())

to

from pip import __main__
if __name__ == '__main__':
    sys.exit(__main__._main())

Contact me