Last active
December 21, 2015 15:49
-
-
Save yanmhlv/6329763 to your computer and use it in GitHub Desktop.
Ubuntu LiveCD env
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
# root, сначала надо обновить репозиторий, | |
# /etc/apt/source.list | |
#deb http://archive.ubuntu.com/ubuntu/ raring main restricted universe multiverse | |
#deb http://security.ubuntu.com/ubuntu/ raring-security main restricted universe multiverse | |
#deb http://archive.ubuntu.com/ubuntu/ raring-updates main restricted universe multiverse | |
apt-get update | |
#apt-get -y install apache2-utils | |
#apt-get -y install tortoisehg mercurial mc htop chromium-browser | |
apt-get -y install git mercurial mc htop | |
apt-get -y install python3-pip python-pip# python-gevent# python-dev # python3-dev | |
pip install virtualenv | |
#pip3 install virtualenv | |
wget -c http://c758482.r82.cf2.rackcdn.com/sublime-text_build-3047_amd64.deb | |
sudo dpkg -i sublime-text_build-3047_amd64.deb | |
# user | |
virtualenv --system-site-packages ~/py27 | |
source ~/py27/bin/activate | |
pip install tornado twisted lxml gevent bottle wtforms pymongo mongoengine motor sqlalchemy | |
#wget -c http://repo.steampowered.com/steam/archive/precise/steam_latest.deb | |
#dpkg -i steam_latest.dev | |
#sudo echo 'deb http://archive.ubuntu.com/ubuntu/ raring main restricted universe multiverse' >> /etc/apt/source.list | |
# bashrc | |
#PS1='\u@\h \w \$ ' # base .bashrc | |
#PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] ' # colored .bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment