forked from irr/python-labs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·37 lines (37 loc) · 1.37 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
#mkdir -p ~/.python-eggs
#chmod g-wx,o-wx ~/.python-eggs
sudo mkdir -p /opt/python/github
sudo chown -R irocha: /opt/python
cd /opt/python/github
git clone [email protected]:irr/high_performance_python.git
cd high_performance_python
git remote add upstream https://github.com/mynameisfiber/high_performance_python.git
git fetch upstream && git merge upstream/master && git push
cd ..
git clone [email protected]:irr/gevent-tutorial.git
cd gevent-tutorial
git remote add upstream https://github.com/sdiehl/gevent-tutorial.git
git fetch upstream && git merge upstream/master && git push
cd ..
git clone [email protected]:irr/python-guide.git
cd python-guide
git remote add upstream https://github.com/kennethreitz/python-guide.git
git fetch upstream && git merge upstream/master && git push
cd ..
git clone [email protected]:irr/awesome-python.git
cd awesome-python
git remote add upstream https://github.com/vinta/awesome-python.git
git fetch upstream && git merge upstream/master && git push
cd ..
git clone [email protected]:irr/pyinstaller.git
cd pyinstaller
git remote add upstream https://github.com/pyinstaller/pyinstaller.git
git fetch upstream && git merge upstream/master && git push
cd ~/gitf
ln -s /opt/python/github/awesome-python
ln -s /opt/python/github/gevent-tutorial
ln -s /opt/python/github/high_performance_python
ln -s /opt/python/github/python-guide
ln -s /opt/python/github/pyinstaller
cd